View Single Post
  #7  
Old 10-26-2005, 12:56 AM
  pauldodman's Avatar 
pauldodman pauldodman is offline
 

X-Guru
  
Join Date: Jul 2003
Location: Spain / UK
Posts: 3,054
 

Default

Right, I think if that is what you are basically doing, then you need to remove the if statements that are in the billing section.

Code:
{if $_userinfo.default_fields.s_address} <TR> <TD>{$lng.lbl_address}: </TD> <TD>{$order.s_address} {$order.s_address_2}</TD> </TR> {/if}

Because of the if statements around here, you are getting nothing.
I reckon if you lose them, and change the s to b, you should get the value displayed.

Code:
<TR> <TD>{$lng.lbl_address}: </TD> <TD>{$order.b_address} {$order.s_address_2}</TD> </TR>
__________________
Paul Dodman
e-business & m-commerce consultant
w: www.luminointernet.com
e: xcart@luminointernet.com

Professional X-Cart help, advice, support and services, specialists in Mobile X-Cart.
Reply With Quote