Hi,
The first can be to edit your translation file through "Hikashop->System->Configuration->Language" and change this line :
X_ITEMS_FOR_X="%s items for %s"
By :
X_ITEMS_FOR_X="%s item(s) for %s"
Else, you can :
- directly edit the "cart" file of the "product" view of your front-end template through "Hikashop->Display->Views" and change this line :
$text = JText::sprintf('X_ITEMS_FOR_X',$qty,$this->loadTemplate());
By :
if($qty > 1)
$text = JText::sprintf('X_ITEMS_FOR_X',$qty,$this->loadTemplate());
else if($qty == 1)
$text = JText::sprintf('X_ITEM_FOR_X',$qty,$this->loadTemplate());
- add this line through your language file :
X_ITEM_FOR_X="%s item for %s"