// Replace
echo $this->fieldsClass->getFieldName($oneExtraField);
// By
echo $this->fieldsClass->getFieldName($oneExtraField,true);
// And then replace
echo $this->fieldsClass->display(
$oneExtraField,
@$this->address->$fieldName,
'data[address]['.$fieldName.']',
false,
' '.$onWhat.'="hikashopToggleFields(this.value,\''.$fieldName.'\',\'address\',0);"',
false,
$this->extraFields['address'],
@$this->address
);
// By
echo $this->fieldsClass->display(
$oneExtraField,
@$this->address->$fieldName,
'data[address]['.$fieldName.']',
false,
' '.$onWhat.'="hikashopToggleFields(this.value,\''.$fieldName.'\',\'address\',0);"',
false,
$this->extraFields['address'],
@$this->address,
false
);