Hi,
You'll have to edit the file "listing" of the view "address" via the menu Display>Views for that.
1. To remove the "new" button, you can remove that code:
<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>
2. To remove the delete button, you can remove that code:
<a onclick="if(!confirm('<?php echo JText::_('HIKASHOP_CONFIRM_DELETE_ADDRESS', true); ?>')){return false;}else{return true;}" 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>
3. To remove the radio input, you can remove that code:
<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();"/>
4. To have only one address, you can add that code:
before the code :