Hello,
I copied listing_price.php, and renamed it into listing_price1.php
I inserted it into show_default.php instead of listing_price.php:
if ($this->params->get('show_price')) {
$this->row = & $this->element;
$this->setLayout('listing_price1');
echo $this->loadTemplate(); }
Then I edited
listing_price1.php by
replacing hikashop_product_price with my custom
hikashop_product_price_big class
$classes = array('hikashop_product_price_big hikashop_product_price_'.$i);
It works fine.
But I have product characteristics drop-down list on product view on frontend,
If customer selects one of the variants, my custom
hikashop_product_price_big class is no longer applied
Could you point me what to do in order to apply the
hikashop_product_price_big class to all products' variants price listing?