Magento – FedEx Shipping that handles residential and commercial addresses

fedexmagento2shipping-methods

We have ported our site to Magento 2.1.2 and from my best understanding the Magento standard FedEx Shipping Method can not properly handle shipping to both residential and commercial addresses.

In the Magento back end you can select Residential or leave it blank (Commercial). If you check it, it sets the Recipient.Address.Residential field. When residential is set, FedEx returns HomeDelivery rates. When it is not set, it returns Ground rates. These rates are not the same. Home Delivery costs more. So if I don't check it I will undercharge residential customers and if I do check it I will over charge commercial customers.

Is there a work around ?
Is there a 3rd party shipping extension that handles this?

What the module should do is perform an address check, and based on what kind of address it is, show Commercial or Residential rates.
The way the current module handles also has problems because there is only one "Free Shipping Method" so you can not choose Ground and Home Delivery.

I see that this question was asked in Dec-2016 (about Magento 1.9) but no one answered.

Best Answer

I think that there's a little bit of confusion over how the FedEx shipping is calculated through Magento.

In the Magento 2 admin area, you are able to tell Magento not to ship to residential addresses. This may be because you only want to ship to businesses, or you are selling products that need special handling or a loading dock to unload.

If you have this disabled, then your Magento 2 store will only ship to businesses.

Here's the screen in the Magento 2 admin: FedEx Configuration - Magento 2 admin

If you select "Yes" to enable residential shipping, then if the shipping address is a residence (house, apartment, etc) then FedEx will calculate shipping based on this destination.

It is more complicated and expensive for FedEx to deliver a package to a home vs. a business. A home is often empty during the day, so it may require multiple attempts to deliver. Most businesses have someone there during the day, and are clustered more closely, and as a result have slightly lower shipping costs.

I hope this clears up the confusion...

Related Topic