Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Want to add info on Shipping pages..


aussierach

Recommended Posts

Posted

Hello o'wise ones :D

 

Wondering if anybody would be so kind to help with a small dilemma..

 

I would like to add some text to the checkout_shipping.php page but I don't know how :/ can someone tell me how?

 

We don't estimate shipping online, some of our products are very large and obscure in shape, so we calculate best method offline and contact customer to finalise purchase. I need to put a big disclaimer for the customers to see on the above mentioned page so they are well aware about shipping process.........

 

Many many thankyous in advance to any fine folk that have a few spare seconds to answer! :)

Posted

You can define the text in includes/languages/english/checkout_shipping.php .If english is your language.

 

Then you can echo it out in the checkout_shipping.php page.

Posted

We did this exact same thing.

In checkout_shipping, we added this <?php echo TEXT_ENTER_SHIPPING_INFORMATION; ?>

around line 234 so it looks like this:

<?php echo TEXT_CHOOSE_SHIPPING_METHOD; ?>

</div>

 

<?php

} elseif ($free_shipping == false) {

?>

 

<div class="contentText">

<?php echo TEXT_ENTER_SHIPPING_INFORMATION; ?>

</div>

 

<?php

}

?>

 

<div class="contentText">

<table border="0" width="100%" cellspacing="0" cellpadding="2">

 

<?php

if ($free_shipping == true) {

?>

 

Then do like nafri said and setup the define in the language file.

 

ps. could not get the code box to work for this post.

Archived

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

×
×
  • Create New...