philip56 Posted November 1, 2005 Posted November 1, 2005 I want to change the input order of items when customers create or modify an account. Specifically, I want to move POSTCODE down to between COUNTY and COUNTRY, but can't work out which file to edit.I have tried the obvious ones like account_create, addressbook_process and includes-languages-english.php to no avail. Can anyone help please. Many thanks Philip
Guest Posted November 1, 2005 Posted November 1, 2005 Philip, The address forms can be found in create_account.php and includes/modules/checkout_new_address.php. The parts you are looking for are all set into <tr> table rows and the Post Code section looks like this: <tr> <td class="main"><?php echo ENTRY_POST_CODE; ?></td> <td class="main"><?php echo tep_draw_input_field('postcode') . '?' . (tep_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="inputRequirement">' . ENTRY_POST_CODE_TEXT . '</span>': ''); ?></td> </tr> Just cut and paste it below the table row you want. Just watch the placement or it will mess up the format of those complex tables. i think these are the only places you need them.
philip56 Posted November 1, 2005 Author Posted November 1, 2005 Philip, The address forms can be found in create_account.php and includes/modules/checkout_new_address.php. The parts you are looking for are all set into <tr> table rows and the Post Code section looks like this: <tr> <td class="main"><?php echo ENTRY_POST_CODE; ?></td> <td class="main"><?php echo tep_draw_input_field('postcode') . '?' . (tep_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="inputRequirement">' . ENTRY_POST_CODE_TEXT . '</span>': ''); ?></td> </tr> Just cut and paste it below the table row you want. Just watch the placement or it will mess up the format of those complex tables. i think these are the only places you need them. Many thanks Dan. I'll give it a try. Regards Philip
Recommended Posts
Archived
This topic is now archived and is closed to further replies.