VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: tygo on July 12, 2013, 09:40:13 AM

Title: Show size in submit email
Post by: tygo on July 12, 2013, 09:40:13 AM
Hello,

i have to implement the product size in my mail (invoice_items.php)

How can i do this?

I already tried 4 different ways, but nothing works...


$lenght = number_format($this->product->product_length);
$height = number_format($this->orderDetails['details']['BT']->product_height);
$width = number_format($item->order_item_width);
$weight = number_format($this->product->product_weight);

echo $width." x ".$height." x ".$lenght." mm ";




Any ideas?

Thanks for help!
Title: Re: Show size in submit email
Post by: liquid.ideas on July 12, 2013, 12:45:54 PM
Have a look here:

http://forum.virtuemart.net/index.php?topic=92756.0
Title: Re: Show size in submit email
Post by: tygo on August 02, 2013, 12:17:07 PM
Thanks for your reply, but this definetly does not work in email templates..

any ideas how to get that data there?

Thanks!