Hi,
in the cart, when you entered a coupn, there's an icon to remove it.
The tooltip has a british text and is not working.
There fore I modified the original view coupon.php
<a href="<?php echo hikashop_completeLink('checkout&task=step&step='.($this->step+1).'&previous='.$this->step.'&removecoupon=1'.'&'.JUtility::getToken().'=1'.$url_itemid); ?>" ><img src="<?php echo HIKASHOP_IMAGES . 'delete2.png';?>" alt="remove coupon" /></a>
with
<a href="<?php echo hikashop_completeLink('checkout&task=step&step='.($this->step+1).'&previous='.$this->step.'&removecoupon=1'.'&'.JUtility::getToken().'=1'.$url_itemid); ?>" ><img src="/images/Site/Icones/delete.png" border="0" alt="<?php echo JText::_('HIKA_REMOVE_COUPON'); ?>" /></a>
and made an override .ini file with HIKA_REMOVE_COUPON="Supprimer le coupon"
but the tooltip is nor displaying.
PS : pb is the same on IE & firefox.
HTML generated code is the same as icons in the cart :
<img alt="Supprimer le coupon" src="/images/Site/Icones/delete.png" border="0"/>
Do you have an idea ?
Thanks. Regards