Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Editing Order Confirmation Page


dumadiscount

Recommended Posts

Posted

My bank requires me to insert "(Australian Dollars)" or something similar on Order Confirmation page where the Total to be paid is shown.

 

For example it currently shows:

 

Sub-Total: $400.00

Flat Rate (Best Way): $5.00

Total: $405.00

 

I need to change it to show as follows:

 

Sub-Total: $400.00

Flat Rate (Best Way): $5.00

Total (Australian Dollars): $405.00

 

Any help greatly appreciated! :D

Posted

Open 'includes/languages/english/modules/order_total/ot_total.php'

 

Replace:

define('MODULE_ORDER_TOTAL_TOTAL_TITLE', 'Total');

 

with:

define('MODULE_ORDER_TOTAL_TOTAL_TITLE', 'Total (Australian Dollars)');

 

Or if you want to have the currency be variable use:

define('MODULE_ORDER_TOTAL_TOTAL_TITLE', 'Total ('.$currency.')');

Archived

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

×
×
  • Create New...