-- HikaShop version -- : 2.6.4
-- Joomla version -- : 3.6.1
-- PHP version -- : 5.5.8
Hi
I use a menu item that return a list of products define by listing_img_title.php with div
when i go to the php code to see how is concat the url i have
<span class="hikashop_product_name">
<?php if($this->params->get('link_to_product_page',1)){ ?>
<a href="<?php echo $link;?>">
<?php }
echo $this->row->product_name;
if($this->params->get('link_to_product_page',1)){ ?>
</a>
<?php } ?>
</span>
so the url i click is
com_hikashop&ctrl=product&task=show&cid=28&name=xxxxx&Itemid=522&lang=fr
Here i can't configure the option / parameters of the page
In a way if i create a Menu item link to the product using BackEnd GUI i can choose many options/parameters and the link ni the FrontEnd look like
option=com_hikashop&view=product&layout=show&Itemid=523&lang=fr
Is there a way to change the php code to be able to go to a custom product page ?
regard's