Hi,
Thanks to try to replace:
$html = hikashop_getLayout('address','address_template',$params,$js);
if(!empty($this->element->fields)){
foreach($this->element->fields as $field){
$fieldname = $field->field_namekey;
if(!empty($this->element->billing_address->$fieldname)) $html=str_replace('{'.$fieldname.'}',$this->fieldsClass->show($field,$this->element->billing_address->$fieldname),$html);
}
}
By:
$html = hikashop_getLayout('address','address_template',$params,$js);
if(!empty($this->element->fields)){
foreach($this->element->fields as $field){
$fieldname = $field->field_namekey;
if($fieldname == 'address_telephone') continue;
if(!empty($this->element->billing_address->$fieldname)) $html=str_replace('{'.$fieldname.'}',$this->fieldsClass->show($field,$this->element->billing_address->$fieldname),$html);
}
}
In the view "order / show" in the frontend template.