Hi,
I'm trying to add the options to the email templates. I've got this:
[order_product_options] => Array
(
[Colour] => Blue
)
And added a modified template - it's all working, except I can't show the options...
if($item->order_product_options) {
$options = $item->order_product_options;
echo " (" . $options->Colour . ")";
}
I also tried:
if($item->order_product_options) {
echo " (" . $item->order_product_options->Colour . ")";
}
All it displays is an empty bracket. How can I display the options?