Hi,
1) if you want to remove this Fax and Company, please go to:
/components/com_breezingcommerce/views/checkout/tmpl/default.php
around line 166-179 you will see:
<div class="crbc-span4 span4">
<div class="control-group">
<div class="control-label">
<label for="company"><?php echo JText::_( 'COM_BREEZINGCOMMERCE_COMPANY' ); ?></label>
</div>
<div class="controls">
<input type="text" name="company" id="company" maxlength="250" value="<?php echo htmlentities( $this->item->company, ENT_QUOTES, 'UTF-8');?>" />
</div>
</div>
</div>
</div>
Comment those lines like:
<!-- <div class="crbc-span4 span4">
<div class="control-group">
<div class="control-label">
<label for="company"><?php echo JText::_( 'COM_BREEZINGCOMMERCE_COMPANY' ); ?></label>
</div>
<div class="controls">
<input type="text" name="company" id="company" maxlength="250" value="<?php echo htmlentities( $this->item->company, ENT_QUOTES, 'UTF-8');?>" />
</div>
</div>
</div>
</div>
-->
For fax go to lines 349-360, you will see those lines:
<div class="crbc-span6 span6">
<div class="control-group">
<div class="control-label">
<label for="fax"><?php echo JText::_( 'COM_BREEZINGCOMMERCE_FAX' ); ?></label>
</div>
<div class="controls">
<input type="text" name="fax" id="fax" maxlength="250" value="<?php echo htmlentities( $this->item->fax, ENT_QUOTES, 'UTF-8');?>" />
</div>
</div>
</div>
Comment it as company code with <!-- and -->
2) I need to find the code for this and come back to you
UPDATE: on same php file around line 461-483:
<div class="crbc-span6 span6">
<div class="control-group">
<div class="control-label">
<label></label>
</div>
<div class="controls">
<label class="control-label" for="use_shipping_address_0">
<input type="radio" value="0" name="use_shipping_address" id="use_shipping_address_0"<?php echo !$this->item->use_shipping_address ? ' checked="checked"' : '';?>/>
<?php echo JText::_( 'COM_BREEZINGCOMMERCE_SHIP_TO_THIS_ADDRESS' ); ?>
</label>
<label class="control-label" for="use_shipping_address_1">
<input type="radio" value="1" name="use_shipping_address" id="use_shipping_address_1"<?php echo $this->item->use_shipping_address ? ' checked="checked"' : '';?>/>
<?php echo JText::_( 'COM_BREEZINGCOMMERCE_SHIP_TO_DIFFERENT_ADDRESS' ); ?>
</label>
</div>
</div>
</div>
Comment those lines
Regards,
Tihana