Hi,
I found out where the problem was coming from and you'll just have to :
- Edit the "Cart" file of the "Checkout" view of the front-end template that you are currently using through "Hikashop->Display->View"
- replace the lines :
?>
<a href="<?php echo hikashop_completeLink('product&task=show&cid='.$row->product_id.$url_itemid);?>" >
By this lines :
$app =& JFactory::getApplication();
if(method_exists($app,'stringURLSafe')){
$product_alias = $app->stringURLSafe(strip_tags($row->product_name));
}else{
$product_alias = JFilterOutput::stringURLSafe(strip_tags($row->product_name));
}
?>
<a href="<?php echo hikashop_completeLink('product&task=show&cid='.$row->product_id.'&name='.$product_alias.$url_itemid);?>" >
If you want me to do it for you, you can send me a temporary back-end access by
PM