fitgura Posted July 27, 2010 Share Posted July 27, 2010 How can I show the wholesale price of the product above the normal price on the product page???please tell mePS.1.3.1 Link to comment Share on other sites More sharing options...
fitgura Posted July 27, 2010 Author Share Posted July 27, 2010 Why is this cell on the "add new product page" pre tax wholesale price - if nobody use it and cannot display it!!!Somebody please tell me how to display it please!!!??? Link to comment Share on other sites More sharing options...
MrBaseball34 Posted July 27, 2010 Share Posted July 27, 2010 Can you post an image of what you want and a link to your site? Link to comment Share on other sites More sharing options...
fitgura Posted July 27, 2010 Author Share Posted July 27, 2010 Simple just want to show the wholesale price too above or below the normal pricesorry but I cannot give link cause all of it is just on localhost yet Link to comment Share on other sites More sharing options...
MrBaseball34 Posted July 27, 2010 Share Posted July 27, 2010 in product.tpl in your theme, locate these lines, around line 188: {if $product->on_sale} {l s='On sale!'} {elseif ($product->reduction_price != 0 || $product->reduction_percent != 0) && ($product->reduction_from == $product->reduction_to OR ($smarty.now|date_format:'%Y-%m-%d %H:%M:%S' <= $product->reduction_to && $smarty.now|date_format:'%Y-%m-%d %H:%M:%S' >= $product->reduction_from))} {l s='Price lowered!'} {/if} {if !$priceDisplay || $priceDisplay == 2} {convertPrice price=$product->getPrice(true, $smarty.const.NULL)} {if $tax_enabled}{l s='tax incl.'}{/if} {/if} {if $priceDisplay == 1} {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} {if $tax_enabled}{l s='tax excl.'}{/if} {/if} {if $priceDisplay == 2} {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} {l s='tax excl.'} {/if} Add your Wholesale price in by adding this: Wholesale Price: {convertPrice price=$product->wholesale_price} before each {convertPrice price=$product->getPrice(false, $smarty.const.NULL)} Link to comment Share on other sites More sharing options...
darqor Posted March 2, 2011 Share Posted March 2, 2011 this wasn`t working for me what i found here, but i found a solutionI inserted this(and it is working) :{l s=‘Wholesale price:’} {$product->wholesale_price} {$wholesale_price} euro/dollar….what ever in front of the: {l s='Pret catalog:'} {if !$priceDisplay || $priceDisplay == 2}so the wholesale price shows before the final price. Link to comment Share on other sites More sharing options...
malloco Posted February 25, 2014 Share Posted February 25, 2014 These options do not work for me. Can anybody help me? i would like to display both prices in the front of my store! Thanks Link to comment Share on other sites More sharing options...
Recommended Posts