-- HikaShop version -- : 4.0.2
-- Joomla version -- : 3.9.6
-- PHP version -- : 7.3.0
-- Browser(s) name and version -- : Chrome 74
On my site I display product code in product view. On variant select it changes,
E.g. the code is FD02
and than it changes to FD02_37_48
How can I show always the main code?
I changed the show_default.php part to
<?php if ($this->config->get('show_code')) { ?>
<span id="hikashop_product_code_main" class="hikashop_product_code_main" itemprop="sku"><?php
echo $this->element->main->product_code;//this line changed
?></span>
<?php } ?>
but it still changes on variant select.
Thanks!