Remove coupon tooltip

  • Posts: 190
  • Thank you received: 0
12 years 11 months ago #37286

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

Last edit: 12 years 11 months ago by codewarrior.

Please Log in or Create an account to join the conversation.

  • Posts: 83103
  • Thank you received: 13415
  • MODERATOR
12 years 11 months ago #37391

That's normal.
When you have an image inside a A html tag, it's the A title which is used as tooltip. So if you want to have the tooltip, you should add your text as title attribute of the a tag.

The following user(s) said Thank You: codewarrior

Please Log in or Create an account to join the conversation.

  • Posts: 190
  • Thank you received: 0
12 years 11 months ago #37538

Oups !
Solved with :

<a href="<?php echo hikashop_completeLink('checkout&task=step&step='.($this->step+1).'&previous='.$this->step.'&removecoupon=1'.'&'.JUtility::getToken().'=1'.$url_itemid); ?>" title="<?php echo JText::_('HIKA_REMOVE_COUPON'); ?>" ><img src="/images/Site/Icones/delete.png" alt="<?php echo JText::_('HIKA_REMOVE_COUPON'); ?>" /></a>

Thanks.

PS : tooltips could be also added on small User Address icons (Edit / Delete)

Last edit: 12 years 11 months ago by codewarrior.

Please Log in or Create an account to join the conversation.

Time to create page: 0.056 seconds
Powered by Kunena Forum