Jump to content

[Solved]Change free shipping text


Recommended Posts

Hello.

 

I am new in Prestashop. My version is 1.5.6.0, and default theme.

 

I want to change 'free shipping' text in customer order ( look the images in attach files ) in some other text. How I to do that for registered customer ?

 

PS.

 

Sorry for my english.

post-711523-0-51490500-1382566818_thumb.png

post-711523-0-20658800-1382566823_thumb.png

Edited by patche (see edit history)
Link to comment
Share on other sites

there is a line:

<td colspan="2" class="price" id="total_shipping">{l s='Free Shipping!'}</td>

 

modify it to:

<td colspan="2" class="price" id="total_shipping">{if $logged}
{l s='text for logged user'}
{else}
{l s='text for unlogged user'}
{/if}</td>
Link to comment
Share on other sites

Solved problems for 4 and 5 step in order.

 

 

Change text for 4 step in order:

 

I go to themes/mythemes/order-carrier.tpl and find this code

{l s='(tax excl.)'}
{/if}
{else}
{l s='Free'}
{/if}

and Free change in text by your choice.

Change text for 5 step order:

 

I go to themes/mythemes/order-payment.tpl find this code

<td colspan="5">{l s='Shipping:'}</td>
<td class="price" id="total_shipping">{l s='Free Shipping!'}</td>

and Free shippig change in text by your choice.

 

Thank you vekia for help.

Edited by patche (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...