Jump to content

want to display Invoice and delivery address separately


lovemyseo

Recommended Posts

I am using prestashop 1.6.1.6 now I have one small query is it possible to display address fields on delivery slips same as on invoice slips
RIght now if both address are same it displays as 
 

Invoice & Shipping Address :
 

 

Address under one heading 
 

I want it to work like invoice 
 

Invoice To :                                              Ship To: 

 

 

Is it possible in 1.6.1.6 was possible in 1.5?

 

Here is my delivery slip code
 

{if !empty($invoice_address)}
<td width="33%"><span class="bold">{l s='Invoice To:' pdf='true'}</span><br/><br/>
{$invoice_address}
</td>
 
                              
<td width="33%">{if $delivery_address}<span class="bold">{l s='Ship To:' pdf='true'}</span><br/><br/>
{$delivery_address}
{/if}
</td>
 
{else}
<td width="66%">{if $delivery_address}<span class="bold">{l s='Invoice & Shipping Address' pdf='true'}</span><br/><br/>
{$delivery_address}
{/if}
</td>
{/if}
</tr> 
 
Thanks
 
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...