Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Add text to "checkout_confirmation.php" page


saveontoner

Recommended Posts

Can you possibly send me the file so I can see where it was added. I see you put this on your catalog page but were you able to do it on the checkout page also

I am able to add the text in the file directly for other pages but for some reason cannot do it on my checkout page

 

to put a text on checkout_confirmation page you have to edit /includes/languages/english/checkout_confirmation.php if that what you want as I have at http://www.jesphoto.net
Link to comment
Share on other sites

Can you possibly send me the file so I can see where it was added. I see you put this on your catalog page but were you able to do it on the checkout page also

I am able to add the text in the file directly for other pages but for some reason cannot do it on my checkout page

Dick,

 

I placed some text near the top of my checkout_confirmation page. It is just a little prompt to remind customers they have one more click to go. Here is the code with a few lines before and after.

<!-- body_text //-->
<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>			<td class="pageHeading" align="right"><?php //echo tep_image(DIR_WS_IMAGES . 'table_background_confirmation.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
	  </tr>
	</table></td>
  </tr>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>Your order will not be processed until you click the confirm button at the bottom of this page.
  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
<?php
 if ($sendto != false) {
?>

Link to comment
Share on other sites

to edit this text you have to go to /catalog/includes/languages/english/checkout_confirmation.php

 

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 - Plese do not click on the small link at the bottom page at PayPal -this is ABORT button. All transaction info will be lost.Click "Continue".Wait and click on Large orange button to return to my web site and download your order.Thank you');

 

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

?>

Link to comment
Share on other sites

Knifeman

thanks, it is what I thought it was but for some reason my page just doesn't look the same.

Maybe if I explain what I am trying to do you may have suggestion

I want to use the UPS module for shipping costs however I want shipping to be free for orders over $110. Do you know how I might do this

 

Dick,

 

I placed some text near the top of my checkout_confirmation page. It is just a little prompt to remind customers they have one more click to go. Here is the code with a few lines before and after.

<!-- body_text //-->
<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
  <tr>
	<td><table border="0" width="100%" cellspacing="0" cellpadding="0">
	  <tr>
		<td class="pageHeading"><?php echo HEADING_TITLE; ?></td>			<td class="pageHeading" align="right"><?php //echo tep_image(DIR_WS_IMAGES . 'table_background_confirmation.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
	  </tr>
	</table></td>
  </tr>
  <tr>
	<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  </tr>Your order will not be processed until you click the confirm button at the bottom of this page.
  <tr>
	<td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
	  <tr class="infoBoxContents">
<?php
 if ($sendto != false) {
?>

Link to comment
Share on other sites

thanks, it is what I thought it was but for some reason my page just doesn't look the same.

Maybe if I explain what I am trying to do you may have suggestion

I want to use the UPS module for shipping costs however I want shipping to be free for orders over $110. Do you know how I might do this

 

 

to edit this text you have to go to /catalog/includes/languages/english/checkout_confirmation.php

 

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 - Plese do not click on the small link at the bottom page at PayPal -this is ABORT button. All transaction info will be lost.Click "Continue".Wait and click on Large orange button to return to my web site and download your order.Thank you');

 

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

?>

Link to comment
Share on other sites

Knifeman

thanks, it is what I thought it was but for some reason my page just doesn't look the same.

Maybe if I explain what I am trying to do you may have suggestion

I want to use the UPS module for shipping costs however I want shipping to be free for orders over $110. Do you know how I might do this

I do not use the UPS module, but I am guessing that you would have to offer 2 shipping modules. Oscommerce will give the customer the cheapest option by default. So set up your UPS like normal, then also install a free shipping module and set the parameter to $110.

 

I really do not see the need to add text to the checkout page if this is what you want to accomplish. Simply add the free shipping information to the shipping info page.

 

Tim

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...