Jump to content

Call for Price


Recommended Posts

Edit /themes/prestashop/product.tpl

Change



               {if !$priceDisplay || $priceDisplay == 2}
{convertPrice price=$product->getPriceWithoutReduct()}
                       {if $tax_enabled}{l s='tax incl.'}{/if}
               {/if}
               {if $priceDisplay == 1}
{convertPrice price=$product->getPriceWithoutReduct(true)}
                       {if $tax_enabled}{l s='tax excl.'}{/if}
               {/if}



To


{if $product.price > 0}
{if !$priceDisplay || $priceDisplay == 2}
{convertPrice price=$product->getPriceWithoutReduct()}
{if $tax_enabled}{l s='tax incl.'}{/if}
{/if}
{if $priceDisplay == 1}
{convertPrice price=$product->getPriceWithoutReduct(true)}
{if $tax_enabled}{l s='tax excl.'}{/if}
{/if}
{else}
{l s='Call for price'}
{/if}

Link to comment
Share on other sites

  • 5 months later...

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