
Originally Posted by
jdaven123
I've been trying to figure this out and now I must ask the guru's of this board! :)
On the Check Out page I would like to change the "Order Comments" title. Where would I find this file to do that?
Also, we are getting customers calling us saying that the shipping part of the one page checkout is saying:
United Parcel Service
111210: The requested service is unavailable between the selected locations.
If you prefer to use ups as your shipping method, please contact...
If you click change address and then click continue with out actually changing the address, then the UPS will show rates for your zip code.
This is only happening with 1 out of 10 customers. Any thoughts?
Thanks
When you say Order Comments, do you mean where it says Special Instructions or Order Comments?
If so, there are several places.
I found these by using the Admin - Tools - Developers Tool Kit in the admin screen.
Code:
store/includes/languages/english/checkout.php
Line #33 : define('TABLE_HEADING_COMMENTS', 'Special Instructions or Order Comments');
store/includes/languages/english/checkout_confirmation.php
Line #20 : define('HEADING_ORDER_COMMENTS', 'Purchase Order Number, Special Instructions or Order Comments');
store/includes/languages/english/checkout_payment.php
Line #22 : define('TABLE_HEADING_COMMENTS', 'Purchase Order Number, Special Instructions or Order Comments');
store/includes/languages/english/checkout_shipping.php
Line #25 : define('TABLE_HEADING_COMMENTS', 'Purchase Order Number, Special Instructions or Order Comments');
store/includes/languages/english/fec_confirmation.php
Line #20 : define('HEADING_ORDER_COMMENTS', 'Special Instructions or Order Comments');
You may not need them all, but it won't hurt to change them all should you uninstall FEC. (Don't remember if I added Purchase Orders or not so yours may not say that exactly)
The UPS thing I can't say if it only happens 1 out of 10. More explicit information would be needed to run that one down.