craigan Posted May 24, 2006 Posted May 24, 2006 Once you enter your credit card info and click Confirm Order at the bottom, it brings you to the next page with big red text at the top that says Order Summary, and has all the details of the order listed. This is confusing and some think the order is done, but you still have to click the button at the bottom to submit one more time before the order is finished. Where can I change the text that says "Order Summary" at the top to something else like "Your order is not complete until you click the confirm order button below." Quote
Guest Posted June 5, 2006 Posted June 5, 2006 Once you enter your credit card info and click Confirm Order at the bottom, it brings you to the next page with big red text at the top that says Order Summary, and has all the details of the order listed. This is confusing and some think the order is done, but you still have to click the button at the bottom to submit one more time before the order is finished. Where can I change the text that says "Order Summary" at the top to something else like "Your order is not complete until you click the confirm order button below." I think that this is what you want In catalog\includes\languages\english\checkout_confirmation.php <?php /* $Id: checkout_confirmation.php,v 1.24 2003/02/06 17:38:16 thomasamoulton Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ define('NAVBAR_TITLE_1', 'Checkout'); define('NAVBAR_TITLE_2', 'Confirmation'); define('HEADING_TITLE', 'Order Confirmation'); <-------------- mine says Order Confirmation define('HEADING_DELIVERY_ADDRESS', 'Delivery Address'); define('HEADING_SHIPPING_METHOD', 'Shipping Method'); define('HEADING_PRODUCTS', 'Products'); define('HEADING_TAX', 'Tax'); define('HEADING_TOTAL', 'Total'); define('HEADING_BILLING_INFORMATION', 'Billing Information'); define('HEADING_BILLING_ADDRESS', 'Billing Address'); define('HEADING_PAYMENT_METHOD', 'Payment Method'); define('HEADING_PAYMENT_INFORMATION', 'Payment Information'); define('HEADING_ORDER_COMMENTS', 'Comments About Your Order'); define('TEXT_EDIT', 'Edit'); ?> Quote
Guest Posted June 5, 2006 Posted June 5, 2006 Once you enter your credit card info and click Confirm Order at the bottom, it brings you to the next page with big red text at the top that says Order Summary, and has all the details of the order listed. This is confusing and some think the order is done, but you still have to click the button at the bottom to submit one more time before the order is finished. Where can I change the text that says "Order Summary" at the top to something else like "Your order is not complete until you click the confirm order button below." OK, changed mine to define('HEADING_TITLE', 'Order Confirmation (click the Confirm Order Button after checking your order details).'); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.