Hi,
This is what I've done for my case:
- for displaying the product code under the product name, with a different format (for example:
paradoxshop.ro/index.php/produs/273-capa...ta-atos-set-4-bucati
), I edited two files:
1. show_reversed.php (because I use the reversed view for the product display) from HikaShop menu: Display\Views, frontend.
original:
</span>
<?php if ($this->config->get('show_code')) { ?>
<span id="hikashop_product_code_main" class="hikashop_product_code_main">
<?php
echo $this->element->product_code;
?>
</span>
modified:
</span>
<?php if ($this->config->get('show_code')) { ?>
<span id="hikashop_product_code_main" class="hikashop_product_code_main">
<?php
echo "<br />Cod produs: ";
echo $this->element->product_code;
?>
</span>
2. frontend_custom.css: I added my wanted format.
/* different parts of the show of a product */
...
.hikashop_product_code_main{
display:inline;
font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:14px;
color: #7f7f7f;