R
R
RushV2016-09-01 13:26:05
opencart
RushV, 2016-09-01 13:26:05

How to display a discount in Opencart?

Hello!
Is it possible, if not, to display a discount like here:
b5419e5146bb447783d195d87adbcd1b.jpg

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
modestfake, 2016-09-08
@modestfake

In catalog/view/theme/default/template/product/category.tpl
In your block, enter this code:

<?php if ($special) { ?>
    <div class="sale-sticker">
      <?php
        $sale_percent = 100 - ($special / $price * 100);
        echo '-' . (int) $sale_percent . '%';
      ?>
    </div>
<?php } ?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question