View Single Post
  #2  
Old 03-14-2009, 05:21 AM
 
geckoday geckoday is offline
 

X-Wizard
  
Join Date: Aug 2005
Posts: 1,073
 

Default Re: Payment Method - use Smarty var in "Special instructions" ?

You need to use the Smarty eval function in the template to evaluate Smarty variables. Try changing this in checkout.tpl:
Code:
<td>{$payment_methods[payment].payment_details|default:"&nbsp;"}</td>
To this:
Code:
{eval var=$payment_methods[payment].payment_details assign="paydtls"} <td>{$paydtls|default:"&nbsp;"}</td>
__________________
Manuka Bay Company
X-Cart Version 4.0.19 [Linux]

UGG Boots and other fine sheepskin products
http://www.snowriver.com
Reply With Quote