Hi I'm trying to do a simple custom email verify page. One of the things that I would like to add would be something like "Thank you for registering for insertProductName" But I cant seem to find a way to add this field. I used {$payment.product_id} but it just gave me the id which is "1" or "4" or whatever. Is there anyway to add the actual product name? Thanks for your time Aaron Kennedy
You can use this code: {php} global $db; $product = $db->get_product($this->_tpl_vars[payment][product_id]); print $product[$title]; {/php}