tozi Posted March 10, 2015 Share Posted March 10, 2015 (edited) 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 March 13, 2015 by tozi (see edit history) Link to comment Share on other sites More sharing options...
tozi Posted March 10, 2015 Author Share Posted March 10, 2015 Nobody have some idea? :/ Link to comment Share on other sites More sharing options...
rocky Posted March 13, 2015 Share Posted March 13, 2015 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 More sharing options...
tozi Posted March 13, 2015 Author Share Posted March 13, 2015 Thanks a lot. Works great. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now