Solved it and I think it's something with the upgrade to latest version that causes this.
In the product/cart.php
in the HikaShop adminisration Displa y=> Views
These lines occur when the upgrade is done:
{
if($qty==1){
if(JText::_('X_ITEM_FOR_X')=='X_ITEM_FOR_X'){
$text = JText::sprintf('X_ITEMS_FOR_X',$qty,$this->loadTemplate());
}else{
$text = JText::sprintf('X_ITEM_FOR_X',$qty,$this->loadTemplate());
}
}else{
$text = JText::sprintf('X_ITEMS_FOR_X',$qty,$this->loadTemplate());
}
}else{
$text = JText::sprintf('TOTAL_IN_CART_X',$this->loadTemplate());
}
}
I replaced it with this:
}
$text = JText::sprintf('X_ITEMS_FOR_X',$qty,$this->loadTemplate());
}else{
$text = JText::sprintf('TOTAL_IN_CART_X',$this->loadTemplate());
}
Now it works. Is there a bug with the upgrade or why does it interfere with styling like this?
Regards
Micke