Added first name and last name address options for products.
This commit is contained in:
parent
77aec308c1
commit
2c41d60933
7 changed files with 58 additions and 21 deletions
|
|
@ -636,12 +636,12 @@ sub www_getCredentials {
|
|||
$f->text(
|
||||
-name => 'firstName',
|
||||
-label => $i18n->get('firstName'),
|
||||
-value => $form->process("firstName") || $addressData->{ name } || $u->profileField('firstName'),
|
||||
-value => $form->process("firstName") || $addressData->{ "firstName" } || $u->profileField('firstName'),
|
||||
);
|
||||
$f->text(
|
||||
-name => 'lastName',
|
||||
-label => $i18n->get('lastName'),
|
||||
-value => $form->process("lastName") || $u->profileField('lastName'),
|
||||
-value => $form->process("lastName") || $addressData->{ "lastName" } || $u->profileField('lastName'),
|
||||
);
|
||||
$f->text(
|
||||
-name => 'address',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue