Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Confirming Orders....!


atjhza

Recommended Posts

Hi,

 

I have had a few customers who get to the 'Order Confirmation' page (showing delivery details and billing details) but then they assume that their order is placed and that they do not have to 'confirm order' at the bottom of the page.

 

Can anyone tell me where the php file is for this page so that I can change the wording from 'Order Confirmation' to 'Order Details'?

Plus if anyone has any suggestions to make it more obvious for a customer to actually 'click to pay', that would be great!

 

thanks,

 

Alan.

Link to comment
Share on other sites

Alan,

 

 

The progress bar text can be found in /includes/languages/english.php as such:

 

// checkout procedure text

define('CHECKOUT_BAR_DELIVERY', 'Delivery Information');

define('CHECKOUT_BAR_PAYMENT', 'Payment Information');

define('CHECKOUT_BAR_CONFIRMATION', 'Confirmation');

define('CHECKOUT_BAR_FINISHED', 'Finished!');

 

The page title can be found in /includes/languages/checkout_confirmation.php as such:

 

define('NAVBAR_TITLE_1', 'Checkout');

define('NAVBAR_TITLE_2', 'Confirmation');

 

define('HEADING_TITLE', 'Order Confirmation');

 

define('HEADING_SHIPPING_INFORMATION', 'Shipping Information');

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');

 

 

 

Chris

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...