dumadiscount Posted November 23, 2006 Posted November 23, 2006 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
dave111 Posted November 23, 2006 Posted November 23, 2006 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.')');
Recommended Posts
Archived
This topic is now archived and is closed to further replies.