-- url of the page with the problem -- Local Server
-- HikaShop version -- : 2.3.0
-- Joomla version -- : 2.5.14
-- PHP version -- : x.x.x
-- Browser(s) name and version -- : FireFox 26.0
-- Error-message(debug-mod must be tuned on) -- : Error_message
This is to help anyone who has this problem.
-Customer logs on to Front end of website and uses the "Manage Your Address" link from the Hikashop User Control Panel.
-There are two small icons to the right of the address, one is "delete" and using Mouseover hover displays tooltip "Delete" correctly.
- Icon beside it is "Edit" and using Mouseover hover displays nothing, no tooltip !
I fixed this by going to backend Hikashop>Views><your template>Address>listing.php
and adding the "title" parameter to the <img scr= code line for that "edit" icon, like this. See code below in BOLD RED
<td class="hikashop_address_listing_item_actions">
<?php global $Itemid; ?>
<a href="<?php echo hikashop_completeLink('address&task=delete&address_id='.$address->address_id.'&'.hikashop_getFormToken().'=1&Itemid='.$Itemid);?>" title="<?php echo JText::_('HIKA_DELETE'); ?>"><img src="<?php echo HIKASHOP_IMAGES; ?>delete.png" alt="<?php echo JText::_('HIKA_DELETE'); ?>" /></a>
<?php echo $this->popup->display(
'<img src="'. HIKASHOP_IMAGES.'edit.png" title="'. JText::_('HIKA_EDIT').'" alt="'. JText::_('HIKA_EDIT').'" />',
'HIKA_EDIT',
hikashop_completeLink('address&task=edit&address_id='.$address->address_id.'&Itemid='.$Itemid,true),
'hikashop_edit_address_popup_'.$address->address_id,
760, 480, '', '', 'link'
); ?>
</td>
</tr>
<?php