Hi,
Please edit the file "administrator/com_hikashop/helper/popup.php" and replace the code
if(!empty($id)) {
if($type == 'button')
$html = '<button '.$this->getAttr($attr,'btn btn-small').' id="'.$id.'" onclick="window.hikashop.openBox(this,\''.$url.'\',true); return false;">';
else
$html = '<a '.$attr.' href="#" id="'.$id.'" onclick="window.hikashop.openBox(this,null,true); return false;">';
} else {
By this one
if(!empty($id)) {
if($type == 'button') {
if($dynamicUrl)
$html = '<button '.$this->getAttr($attr,'btn btn-small').' id="'.$id.'" onclick="window.hikashop.openBox(this,'.$url.',true); return false;">';
else
$html = '<button '.$this->getAttr($attr,'btn btn-small').' id="'.$id.'" onclick="window.hikashop.openBox(this,\''.$url.'\',true); return false;">';
} else
$html = '<a '.$attr.' href="#" id="'.$id.'" onclick="window.hikashop.openBox(this,null,true); return false;">';
} else {
It will fix the problem.
We will update the HikaShop package with this patch as soon as possible.
Sorry for the inconvenient, my fault.
Regards,