Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Modifiying SHipping Options


tomcoleman

Recommended Posts

Posted

on the shipping options where you can select flat rate, Amercain postal service and that. Well i live in the UK so can i rename these feild to like Royal MAil and Parcel Force? can these be done easliey where are they located?

  • 2 weeks later...
Posted

Look in catalogincludeslanguagesenglishmodulesshipping

there you will find usps.php (do not confuse this with the usps.php file you will find in catalogincludesmodulesshipping)

define('MODULE_SHIPPING_USPS_TEXT_TITLE', 'United States Postal Service');

define('MODULE_SHIPPING_USPS_TEXT_DESCRIPTION', 'United States Postal Service<br><br>You will need to have registered an account with USPS at http://www.uspsprioritymail.com/et_regcert.html to use this module<br><br>USPS expects you to use pounds as weight measure for your products.');

define('MODULE_SHIPPING_USPS_TEXT_OPT_PP', 'Parcel Post');

define('MODULE_SHIPPING_USPS_TEXT_OPT_PM', 'Priority Mail');

define('MODULE_SHIPPING_USPS_TEXT_OPT_EX', 'Express Mail');

You will just need to change the text from 'United States Postal Service' to 'Royal Mail '

However wouldn't you be better to use the table rate and change the text for that?

 

 

I am just working on the same thing now but I need to set up for UK 1st Class post, UK Special Delivery, UK Parcel force and EEC Swift Air :?

So it is a case of editing catalogincludesmodulesshippingtable.php and changing every instance of MODULE_SHIPPING_TABLE* to MODULE_SHIPPING_TABLE1* and saving it as catalogincludesmodulesshippingtable1.php and then making a new file as below and saving that as catalogincludeslanguagesenglishmodulesshippingtable1.php

 

<?php

/*

 $Id: table.php,v 1.4 2001/09/23 11:40:01 dwatkins Exp $



 The Exchange Project - Community Made Shopping!

 http://www.theexchangeproject.org



 Copyright (c) 2000,2001 The Exchange Project



 Released under the GNU General Public License

*/



define('MODULE_SHIPPING_TABLE_TEXT_TITLE', 'UK 1st Class Post');

define('MODULE_SHIPPING_TABLE_TEXT_DESCRIPTION', 'Table Rate');

define('MODULE_SHIPPING_TABLE_TEXT_WAY', 'Usually UK next day delivery');

define('MODULE_SHIPPING_TABLE_TEXT_WEIGHT', 'Weight');

define('MODULE_SHIPPING_TABLE_TEXT_AMOUNT', 'Amount');

?>

Best wishes

Steve

Archived

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

×
×
  • Create New...