Product Slider

This topic has been marked as resolved.

hello
Could you please help me with the following question:
where (in which file) calculates % of discount which is displayed in product slider (if product has special price on special tab) ?

Picture is attached

Thank you in advance

September 10, 2018 at 11:38 pm #65364

Hi,

This is generated in system/vendor/BurnEngine/catalog/plugin/ProductPlugin.php on row 335:

if ($product['special_num'] && $product['price_num']) {
    $product['savings_num'] = round((1 - $product['special_num'] / $product['price_num'] ) * 100);
} else {
    $product['savings_num'] = false;
}

BR,
ThemeBurn team

September 17, 2018 at 4:14 pm #65482

Thank you very much!

September 18, 2018 at 2:21 pm #65514

Glad to be of assistance!

BR,
ThemeBurn team

September 18, 2018 at 4:56 pm #65516
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.