RE: Moving Zip/Postal Code in Address Book editing
vptuning <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.general |
|---|---|
| Message-ID | <478edbab8736fe165500f1192df1c1d2@osCommerce-Forums> |
This message was sent from: General Support
http://forums.oscommerce.com/viewtopic.php?p=226950#226950
----------------------------------------------------------------
UPDATE:
I HAD to find this out on my own, so I figured it out!
The file you need to update is /catalog/includes/modules/address_book_details.php
I simply moved the following code to after the State code.
[code] <tr>
<td class="main"><?php echo ENTRY_POST_CODE; ?></td>
<td class="main"><?php echo tep_draw_input_field('postcode', $entry['entry_postcode']) . ' ' . (tep_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="inputRequirement">' . ENTRY_POST_CODE_TEXT . '</span>': ''); ?></td>
</tr>[/code]