Hi,
In product / cart.php there is this piece of code:
<?php echo $row->product_name; ?>
<?php if ($this->config->get('show_code')) { ?>
<span class="hikashop_product_code_cart"><?php echo $row->product_code; ?></span>
<?php } ?>
I wanted to hide the product_name and just show the product_code and I see:
if ($this->config->get('show_code'))
Is there a option to hide/show the product_code in the cart?
I have looked in
System -> Configuration -> Main -> Cart and also in the other tabs but can't seem to find where you can hide/show the code.
Also in the
"Parameters for products" in the
Cart Module I don't see a parameter to show or hide the product_code.
If there is such a parameter I don't need to remove the if-structure.