Hi Nicholas,
Sorry for reviving a post. I am using Hikashop 4 version and I would like to display the variant names that are appended to the Product title on the other part of the page, not just beside the Original title, like under the Prices maybe.
On the show_default.php file, the title only has these codes:
<span id="hikashop_product_name_main" class="hikashop_product_name_main" itemprop="name"><?php
if(hikashop_getCID('product_id') != $this->element->product_id && isset($this->element->main->product_name))
echo $this->element->main->product_name;
else
echo $this->element->product_name;
?></span>
What code do hold's these variant names that gets added to the original product names and where do I find it?
Any help is greatly appreciated.