Hi!
You should replace in vardefs.php
PHP Code:
'lbl_address_information'=>array(
array (
'name' => 'billing_address_street',
'hideLabel'=> true,
'type' => 'address',
'displayParams'=>array('key'=>'billing', 'rows'=>2, 'cols'=>30, 'maxlength'=>150),
),
array (
'name' => 'shipping_address_street',
'hideLabel' => true,
'type' => 'address',
'displayParams'=>array('key'=>'shipping', 'copy'=>'billing', 'rows'=>2, 'cols'=>30, 'maxlength'=>150),
),
),
to
PHP Code:
'lbl_address_information'=>array(
array(
array(
'name'=>'billing_address_street',
'label'=>'LBL_BILLING_ADDRESS',
'customCode' => '<textarea id="billing_address_street" name="billing_address_street">{$fields.billing_address_street.value}</textarea>' ),
array(
'name'=>'shipping_address_street',
'label'=>'LBL_SHIPPING_ADDRESS',
'customCode' => '<textarea id="shipping_address_street" name="shipping_address_street">{$fields.shipping_address_street.value}</textarea>'
)
),
array(
array(
'name'=>'billing_address_city',
'label'=>'LBL_BILLING_ADDRESS_CITY'
),
array(
'name'=>'shipping_address_city',
'label'=>'LBL_SHIPPING_ADDRESS_CITY'
)
),
array(
array(
'name'=>'billing_address_state',
'label'=>'LBL_BILLING_ADDRESS_STATE'
),
array(
'name'=>'shipping_address_state',
'label'=>'LBL_SHIPPING_ADDRESS_STATE'
)
),
array(
array(
'name'=>'billing_address_postalcode',
'label'=>'LBL_BILLING_ADDRESS_POSTALCODE'
),
array(
'name'=>'shipping_address_postalcode',
'label'=>'LBL_SHIPPING_ADDRESS_POSTALCODE'
)
),
array(
array(
'name'=>'billing_address_country',
'label'=>'LBL_BILLING_ADDRESS_COUNTRY'
),
array(
'name'=>'shipping_address_country',
'label'=>'LBL_SHIPPING_ADDRESS_COUNTRY'
)
),
),
And then you should clear the cache (cache/modules/Accounts).
Bookmarks