Post by rlmack72 » Thu Oct 17, 2013 4:50 pm

I am using 1.5.6 and trying to setup weight based shipping. In reading other posts, I checked and set the geo zones (USA and all zones). When I go to the check out page, under shipping options, it says "Warning: No Shipping options are available. Please contact us for assistance!". I also made sure that the user I created to test this option had a default address. Weight based is the only shipping option I offer and have selected.

Anyone have ideas on things to check?

Also note that this is a new install and starting to set things up.

Newbie

Posts

Joined
Thu Jan 10, 2013 6:35 pm

Post by Johnathan » Thu Oct 17, 2013 10:38 pm

1. Make sure your geo zones are actually associated with countries and zones in System > Localisation > Geo Zones.

2. Make sure the shipping rate for that geo zone is marked Enabled, and that the extension as a whole is marked as Enabled.

3. Make sure your rates are in the format weight:cost, weight:cost. For example, 99999:5.00 for a $5.00 flat rate.

Image Image Image Image Image


User avatar
Administrator

Posts

Joined
Fri Dec 18, 2009 3:08 am


Post by rlmack72 » Fri Oct 18, 2013 7:36 am

ok, so far everything checks out there but still getting the same thing. Now i did upgrade from an older version. maybe it was a bad upgrade?

Newbie

Posts

Joined
Thu Jan 10, 2013 6:35 pm

Post by ainosilva » Sat Mar 03, 2018 2:23 am

For OC 3.0.0.0, I found an error in a model: catalog > model > extension > shipping > weight.php

Code: Select all

$this-config->get('weight_' . $result['geo_zone_id'] . '_status') 
should be

Code: Select all

$this->config->get('shipping_weight_' . $result['geo_zone_id'] . '_status')
and

Code: Select all

$this->config->get('weight_tax_class_id')
should be

Code: Select all

$this->config->get('shipping_weight_tax_class_id')
and

Code: Select all

$this->config->get('weight_' . $result['geo_zone_id'] . '_rate')
should be

Code: Select all

$this->config->get('shipping_weight_' . $result['geo_zone_id'] . '_rate')
finally

Code: Select all

$this->config->get('weight_sort_order')
should be

Code: Select all

$this->config->get('shipping_weight_sort_order')
in the OC version after that is already fixed.

Newbie

Posts

Joined
Tue Feb 12, 2013 4:22 am
Who is online

Users browsing this forum: Amazon [Bot] and 56 guests