geobend Posted December 28, 2005 Share Posted December 28, 2005 Post Code should be listed after the state and not before the city when creating an account. Any ideas on how to make this change would certainly be appreciated. Thanks Geo Link to comment Share on other sites More sharing options...
AlanR Posted December 28, 2005 Share Posted December 28, 2005 Post Code should be listed after the state and not before the city when creating an account. Any ideas on how to make this change would certainly be appreciated. Thanks Geo In catalog/create_account.php find these two lines (403 - 410) <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> <tr> <td class="main"><?php echo ENTRY_CITY; ?></td> <td class="main"><?php echo tep_draw_input_field('city') . ' ' . (tep_not_null(ENTRY_CITY_TEXT) ? '<span class="inputRequirement">' . ENTRY_CITY_TEXT . '</span>': ''); ?></td> </tr> and switch 'em around like so... <tr> <td class="main"><?php echo ENTRY_CITY; ?></td> <td class="main"><?php echo tep_draw_input_field('city') . ' ' . (tep_not_null(ENTRY_CITY_TEXT) ? '<span class="inputRequirement">' . ENTRY_CITY_TEXT . '</span>': ''); ?></td> </tr> <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> Local: Mac OS X 10.5.8 - Apache 2.2/php 5.3.0/MySQL 5.4.10 • Web Servers: Linux Tools: BBEdit, Coda, Versions (Subversion), Sequel Pro (db management) Link to comment Share on other sites More sharing options...
geobend Posted December 28, 2005 Author Share Posted December 28, 2005 Thank you! Link to comment Share on other sites More sharing options...
geobend Posted December 28, 2005 Author Share Posted December 28, 2005 Another quick question for you... I am using Authorize.nett as the only payment processor, and I would like to make the payment page more intuitive. Where would I make a change to catalog/checkout_payment.php so that in the Payment method box it would read something like this... This is currently the only payment method available to use on this order. Visa, Mastercard,American Express and Discover. Thanks again, Geo Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.