Hello,
In order to remove your billing address, you have to create view override, have a look on this tutorial.
www.hikashop.com/support/documentation/1...-display.html#layout
In order to help you to get which view you have to edit you have an the "Display view files" option.
To reach it, go in Main HikaShop Configuration, then in Advanced tab, then go in "Advanced settings"
To get this :
You have to remove or comment the part that process the billing address, let's detail it:
In order/show.php at the start you have this :
You have to remove the red bordered part in
order / show.php, around line
28, you have this :
...
?> </div>
<div id="hikashop_order_left_part" class="hikashop_order_left_part"><?php
echo $this->store_address;
?></div>
</td>
</tr>
<tr>
<td>
<table>
<tr>
<?php
$params = null;
$js = '';
?>
<?php
if(!empty($this->element->billing_address)) {
?> <td>
<fieldset class="adminform" id="htmlfieldset_billing">
<legend style="background-color: #FFFFFF;"><?php echo JText::_('HIKASHOP_BILLING_ADDRESS'); ?></legend>
<?php
$addressClass = hikashop_get('class.address');
echo $addressClass->displayAddress($this->element->fields,$this->element->billing_address,'address');
?> </fieldset>
</td>
<?php
}
if(!empty($this->element->order_shipping_id) && !empty($this->element->shipping_address)) {...
Replace it, for this :
...
?> </div>
</td>
</tr>
<tr>
<td>
<table>
<tr>
<?php
$params = null;
$js = '';
?>
<?php
if(!empty($this->element->order_shipping_id) && !empty($this->element->shipping_address)) {...
Hope this will fit your needs.
Regards