Thanks @Jerome for the reply
I hope that in future versions there is this possibility
Thaks @erickb for the suggestion
I think I found the code that handles this function in the file
components/com_hikashop/views/address/tmpl/listing.php
I will give a big hand
if you show me exactly what to replace
<table>
<tr>
<td><?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'
);
?></td>
<td>
<a href="<?php echo hikashop_completeLink('user');?>" >
<span class="icon-32-back" title="<?php echo JText::_('HIKA_BACK'); ?>"></span> <?php echo
JText::_('HIKA_BACK'); ?>
</a>
</td>
</tr>
</table>
<tr class="hikashop_address_listing_item">
<td class="hikashop_address_listing_item_default">
<input type="radio" name="address_default" value="<?php echo $this->address->address_id;?>"<?php
if($this->address->address_default == 1) {
echo ' checked="checked"';
}
?> onclick="this.form.submit();"/>
</td>
<td class="hikashop_address_listing_item_details">
<span><?php
echo $addressClass->displayAddress($this->fields, $address, 'address');
?></span>
</td>
<td class="hikashop_address_listing_item_actions">
<a href="<?php echo
hikashop_completeLink('address&task=delete&address_id='.$address->address_id.'&'.$token.'=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>
Thanks again for your support.