I've implemented the changes and the fields still display on the register form.. i've added my changes below:
Added the following fields:
Table - column name - Label
address naamoverledene Naam (overledene)
address address_overledene Naam2 (overledene)
Changes in address / form.php
foreach($this->extraFields as $fieldName => $oneExtraField) {
if(fieldName=="address_overledene" && JRequest::getVar('address_type')=='billing'){
continue; //skip the address_state field for the billing address
if(fieldName=="naamoverledene" && JRequest::getVar('address_type')=='billing'){
continue; //skip the address_state field for the billing address
if(fieldName=="address_naamoverledene" && JRequest::getVar('address_type')=='billing'){
continue; //skip the address_state field for the billing address
}
?>
<tr>
Changes in checkout - adddress_view (bottom code, changes highlighted in bold text)
<span class="hikashop_checkout_<?php echo $this->type;?>_address_buttons">
<a title="<?php echo JText::_('HIKA_DELETE'); ?>" class="hikashop_checkout_<?php echo $this->type;?>_address_delete" href="<?php echo hikashop::completeLink('checkout&step='.$this->step.'&redirect=checkout&task=deleteaddress&address_id='.$address->address_id.'&'.JUtility::getToken().'=1');?>"><img alt="<?php echo JText::_('HIKA_DELETE'); ?>" src="<?php echo HIKASHOP_IMAGES; ?>delete.png" border="0" /></a>
<a title="<?php echo JText::_('HIKA_EDIT'); ?>" class="modal hikashop_checkout_<?php echo $this->type;?>_address_edit" rel="{handler: 'iframe', size: {x: 450, y: 480}}" href="<?php echo hikashop::completeLink('address&task=edit&address_type='.$this->type.'&redirect=checkout&address_id='.$address->address_id.'&step='.$this->step,true);?>" onclick="SqueezeBox.fromElement(this,{parse: 'rel'});return false;"><img alt="<?php echo JText::_('HIKA_EDIT'); ?>" src="<?php echo HIKASHOP_IMAGES; ?>edit.png" border="0" /></a>
</span>
</td>
</tr>
<?php
}
?>
</table>
<?php
}
?>
<span id="hikashop_checkout_<?php echo $this->type;?>_address_new" class="hikashop_checkout_<?php echo $this->type;?>_address_new">
<a id="hikashop_checkout_<?php echo $this->type;?>_address_new_link" rel="{handler: 'iframe', size: {x: 450, y: 480}}" href="<?php echo hikashop::completeLink('address&redirect=checkout&address_type='.$this->type.'&task=add&step='.$this->step,true);?>" onclick="SqueezeBox.fromElement(this,{parse: 'rel'});return false;">
<?php echo $this->cart->displayButton(JText::_('HIKA_NEW'),'new',$this->params,'','var link = document.getElementById(\'hikashop_checkout_'. $this->type.'_address_new_link\'); if(link) SqueezeBox.fromElement(link,{parse: \'rel\'});return false;'); ?>
</a>
</span>