Jump to content

REMOVE Price Lowered


Guest ueon

Recommended Posts

PrestaShop doesn't put a "Price lowered" watermark on images. Are you using a third-party theme? PrestaShop only displays "Price lowered" text above the product price. It's lines 12-16 of product-list.tpl (in the default PrestaShop v1.3.4 theme) that displays that displays the "Price lowered" and "On sale" text:

{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}

Link to comment
Share on other sites

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