-- HikaShop version -- : 3.4.0
-- Joomla version -- : 3.8.7
I want the product code SKU to be showed.
But what is the code for it, i cant find it in the docs.
I have moderated product / listing_img_title.php with this
<!-- PRODUCT CODE -->
<span class='hikashop_product_code_list'> varenummer :
<?php if ($this->config->get('show_code')) { ?>
<?php if($this->params->get('link_to_product_page',1)){ ?>
<a href="<?php echo $link;?>">
<?php }
echo $this->row->product_code;
if($this->params->get('link_to_product_page',1)){ ?>
</a>
<?php } ?>
<?php } ?>
</span>
I get this view but no code
Then i want to add the product_code_SKU to the product, but cant find the file that i have to edit?
Hop you can lead me in the direction?