Hello Scott,
Thank you for your feedback, the solution will just be to edit the code of your "show_block_address" file of the "checkout" view of your front-end template, and change these lines :
echo $this->fieldClass->display(
$field,
@$this->edit_address->$fieldname,
'data[address_'.$this->step . '_' . $this->module_position.']['.$fieldname.']',
false,
' class="hkform-control" ' . $onWhat . '="window.hikashop.toggleField(this.value,\''.$fieldname.'\',\'address_'.$this->step . '_'.$this->module_position.'\',0,\'hikashop_checkout_\');"',
false,
$this->cart_addresses['fields'],
$this->edit_address,
false
);
?>
</div>
</div>
<?php
By :
echo $this->fieldClass->display(
$field,
@$this->edit_address->$fieldname,
'data[address_'.$this->step . '_' . $this->module_position.']['.$fieldname.']',
false,
' class="hkform-control" ' . $onWhat . '="window.hikashop.toggleField(this.value,\''.$fieldname.'\',\'address_'.$this->step . '_'.$this->module_position.'\',0,\'hikashop_checkout_\');"',
false,
$this->cart_addresses['fields'],
$this->edit_address,
false
);
?>
</div>
</div>
<input type="hidden" name="data[address_selecttype_<?php echo $this->step . '_' . $this->module_position; ?>]" value="1" />
<?php