Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

configure checkout_confirmation.php


paydaymom

Recommended Posts

Posted

Ok, I am doing this for my mom in law and I am becoming the monster in law b/c I am going crazy. She makes handmade baskets and does not want to use a flat rate, table rate or any thing else for shipping. She wants to figure it after the order, most of her customers are preexisting. I took all the shipping modules off and added a note that they would recieve a confirmation email showing the shipping charges for them to let her know to go ahead with the order. During the checkout process when you get the order confirmation page aka: checkout_confirmation.php I would love to put a note here also maybe in the billing info that says they will receive an email stating the total with shipping. Is this possible?

 

Also at the bottom it says make checks payable to and below her info it says "Your order will not ship until we receive payment." I do not know where or how I added this line but I would like to be able to edit this area too. I think I have been looking at it to long today. Thanks

Posted

includes/languages/modules/payment/moneyorder.php

 

change the description.

 

FYI, if you want to change any messages on your website, the first place is to look for them in languages folder.

Posted

I meant post the code for the page. Depending on where the current message is derived from, somewhere in the english.php, or languages subfolder will be the area where the comments will be added. I wanted to see the page (the code) for checkout_confirmation.php to see what you have going on in there. It probably looks like this:

 

td class="main"><?php echo '<b>' . HEADING_ORDER_COMMENTS . '</b> .....

 

Which is calling the definition of HEADING_ORDER_COMMENTS to print. HEADING_ORDER_COMMENTS (or similar) is defined in catalog/includes/languages/english/checkout_confirmation.php:

define('HEADING_ORDER_COMMENTS', 'Comments About Your Order');

 

Similar to how it is done here to define the field heading "Comments about your order:" Alteratively, you may have also hard coded the HTML directly into the page, which is why I want to see the code for the page. Capice?

 

V6 :thumbsup:

Posted

Duh, I am so sorry!! The code for the checkout_confirmation.php is here:

 

define('NAVBAR_TITLE_1', 'Checkout');

 

define('NAVBAR_TITLE_2', 'Confirmation');

 

 

 

define('HEADING_TITLE', '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');

 

?>

 

Also I figured out where I change the Your order will not ship info that was listed in the payment info box. I would like to put a note in the Billing information box on the right side where it shows the total.

 

Thanks!!

Archived

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

×
×
  • Create New...