In the Hikashop frond end user control panel -> addresses section on my website I notice that the new account and edit account buttons don't work .
They however work on the checkout page. Has anyone else noticed this problem?
in case the developers notice this thread
I mean the file: /components/com_hikashop/views/address/tmpl/listing.php
<?php echo $this->popup->display(
'<span class="icon-32-new" title="'. JText::_('HIKA_NEW').'"></span>'. JText::_('HIKA_NEW'),
'HIKA_NEW',
hikashop_completeLink('address&task=add',true),
'hikashop_new_address_popup',
760, 480, '', '', 'link'
); ?>
<?php echo $this->popup->display(
'<img src="'. HIKASHOP_IMAGES.'edit.png" 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'
); ?>