Email verify - product info

Discussion in 'Customization & add-ons' started by bmfbusinessservices, Jul 21, 2010.

  1. bmfbusinessservices

    bmfbusinessservices New Member

    Joined:
    Apr 20, 2010
    Messages:
    2
    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
  2. alexander

    alexander Administrator Staff Member

    Joined:
    Jan 8, 2003
    Messages:
    6,279
    You can use this code:
    {php}
    global $db;
    $product = $db->get_product($this->_tpl_vars[payment][product_id]);
    print $product[$title];
    {/php}
  3. bmfbusinessservices

    bmfbusinessservices New Member

    Joined:
    Apr 20, 2010
    Messages:
    2
    Thank you very much for your help alexander

Share This Page