Jump to content

[SOLVED]quick order id_carrier


Recommended Posts

Hi all, i need in quick order show some text for a specific carrier with id 10.

How can i add text?

I tried some like

{if isset($cart->id_carrier) && $cart->id_carrier == 10}
{* some stuff here *}
{/if}
But didnt work. I have prestashop 1.5.6.1.

Thanks

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

Search for this line at around 132 of order-carrier.tpl in your theme's directory:

{foreach $option_list as $key => $option}

Somewhere after this line, before the corresponding {/foreach} at around line 222, you can add code like the following:

{foreach $option.carrier_list as $carrier}
    {if $carrier.instance->id == 10}
        Your text here
    {/if}
{/foreach}

Hopefully, this will add text just for carrier 10. I don't have a PrestaShop v1.5.6.1 test site I can try it on.

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...