JanetsCloset Posted December 24, 2014 Share Posted December 24, 2014 (edited) How would I display the product cost and pre-tax retail price on the product page. For instance, on this page https://www.janetscl...troller=product Right above you pay I would like to put the product cost. How do I accomplish this? Edited January 6, 2015 by JanetsCloset (see edit history) Link to comment Share on other sites More sharing options...
JanetsCloset Posted December 26, 2014 Author Share Posted December 26, 2014 i decided to use vekias module to show pre-tax price and price with tax at the same time because it refresh the pre-tax price with attribute change (if it affects the price) Link to comment Share on other sites More sharing options...
Richard S Posted January 6, 2015 Share Posted January 6, 2015 You can use the variables in product.tpl.If I remember good, {$product.price_tax_excl} should be the price without taxes Link to comment Share on other sites More sharing options...
fred-vinapresta Posted January 6, 2015 Share Posted January 6, 2015 Hi, yes you can try to put this following in your product.tpl: {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} and {convertPrice price=$product->wholesale_price} Link to comment Share on other sites More sharing options...
gbartosz83 Posted November 13, 2019 Share Posted November 13, 2019 (edited) How to do this in prestashop 1.7.6.1? I have tried some tip in product prices tpl but it only mixed both prices it was something like this: 8,61 inc tax - before I have commented out the if statement {block name='product_without_taxes'} {if $priceDisplay == 2} <p class="product-without-taxes">{l s='%price% tax excl.' d='Shop.Theme.Catalog' sprintf=['%price%' => $product.price_tax_exc]}</p> {/if} {/block} but it mixed two prices like this: 8,61 7,00 ex tax inc tax I have found this thread https://github.com/PrestaShop/PrestaShop/issues/12276 for cart page but it seems to be out of date for my version of prestashop. 1. How to display both prices on product page ? 2. How to display both prices on product list ? 3. How to display both prices on cart page ? Edited November 13, 2019 by gbartosz83 (see edit history) 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