Maurizio666 Posted May 6, 2012 Share Posted May 6, 2012 Hello I am an apprentice of Prestashop; I need this info: if I set in BO an extra shipping cost for a product, is it possible to show it in the homepage or at least in the specific page of the product? In other words I don't want that the customer would notice the extra shipping cost of the product only when he will put it in the cart Thanks Maurizio Link to comment Share on other sites More sharing options...
phrasespot Posted May 9, 2012 Share Posted May 9, 2012 I realize you may be looking for an automayted way but without modification to core files, you could add the extra shipping cost to product long description. Since you need to manually enter extra shipping cost for each product, adding it to the description as well would not involve any extra work. Link to comment Share on other sites More sharing options...
Maurizio666 Posted May 9, 2012 Author Share Posted May 9, 2012 Thanks for your advice I'm doing it Link to comment Share on other sites More sharing options...
ivankaa Posted September 6, 2012 Share Posted September 6, 2012 This code may help to show additional shipping cost in product.tpl: {convertPrice price=$product->additional_shipping_cost} 3 Link to comment Share on other sites More sharing options...
hakeryk2 Posted February 19, 2016 Share Posted February 19, 2016 {convertPrice price=$product->additional_shipping_cost} Is there is anynone who can tell me how to do if statement for that? ie if {convertPrice price=$product->additional_shipping_cost} is = 0 then do this else do this? Link to comment Share on other sites More sharing options...
DrawdeX Posted September 5, 2017 Share Posted September 5, 2017 Is there is anynone who can tell me how to do if statement for that? ie if {convertPrice price=$product->additional_shipping_cost} is = 0 then do this else do this? {if $product->additional_shipping_cost == 0} /* code here */ {else} /* code here */ {/if} I might be too late for this, but hope this helps. 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