Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I change my FedEx shipping services to be ONLY Ground?


Cara Elizabeth Jeter

Recommended Posts

Posted

So, I am not very crafted in the skill of website knowledge, however I am willing to delve into more info to find what I need. Currently, we are shipping through FedEx, and that is connected to our shipping module. Somehow our rates are not being calculated correctly for 2-Day Air and for Standard Overnight....Ground shipping rates are fine. Is there a way that I can take OFF 2-Day Air and Standard Overnight to have ONLY the Ground Service? I hope my question is not confusing, but if it is I will clarify more if need be...my vocabulary is pretty limited.

 

Thanks for any help! It's very much appreciated a million times over!

Posted

Try opening the file /includes/modules/shipping/fedex1.php

 

you might see a section as below

 

// You can comment out any methods you do not wish to quote by placing a // at the beginning of that line

// If you comment out 92 in either domestic or international, be

// sure and remove the trailing comma on the last non-commented line

$this->domestic_types = array(

'01' => 'Priority (by 10:30AM, later for rural)',

'03' => '2 Day Air',

'05' => 'Standard Overnight (by 3PM, later for rural)',

'06' => 'First Overnight',

'20' => 'Express Saver (3 Day)',

'90' => 'Home Delivery',

'92' => 'Ground Service'

);

 

Enjoy

 

G

Need help installing add ons/contributions, cleaning a hacked site or a bespoke development, check my profile

 

Virus Threat Scanner

My Contributions

Basic install answers.

Click here for Contributions / Add Ons.

UK your site.

Site Move.

Basic design info.

 

For links mentioned in old answers that are no longer here follow this link Useful Threads.

 

If this post was useful, click the Like This button over there ======>>>>>.

Posted

In your includes/modules/shipping/fedex.php file you will see an area that kind of looks like this:

 

$this->domestic_types = array(

'01' => 'Priority (by 10:30AM, later for rural)',

'03' => '2 Day Air (2 days for orders placed before 11:00 a.m. PST)',

'05' => 'Standard Overnight (for orders placed before 11:00 a.m. PST)',

'06' => 'First Overnight',

'20' => 'FedEx Express Saver (3 days for orders placed before 11:00 a.m. PST)',

'90' => 'Home Delivery',

'92' => 'Ground Service'

);

 

$this->international_types = array(

'01' => 'International Priority (1-3 Days)',

'03' => 'International Economy (4-5 Days)',

'06' => 'International First',

'90' => 'Home Delivery',

'92' => 'Ground Service'

);

 

Just comment out the methods you do not want to offer (like this)

 

// '06' => 'International First',

// '06' => 'International First',

 

Hope that helps!

 

So, I am not very crafted in the skill of website knowledge, however I am willing to delve into more info to find what I need. Currently, we are shipping through FedEx, and that is connected to our shipping module. Somehow our rates are not being calculated correctly for 2-Day Air and for Standard Overnight....Ground shipping rates are fine. Is there a way that I can take OFF 2-Day Air and Standard Overnight to have ONLY the Ground Service? I hope my question is not confusing, but if it is I will clarify more if need be...my vocabulary is pretty limited.

 

Thanks for any help! It's very much appreciated a million times over!

Archived

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

×
×
  • Create New...