Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / flat rate shipping - can u set a minimum wieght

flat rate shipping - can u set a minimum wieght

Locked

Views: 1,472

Results 1 to 3 of 3
This thread is locked. New replies are disabled.
2 Oct 2006, 1:54 AM
#1
modchipfitters_co_uk avatar

modchipfitters_co_uk

Zen Follower

Join Date:
Sep 2006
Location:
United Kingdom
Posts:
190
Plugin Contributions:
0

flat rate shipping - can u set a minimum wieght

is there any way to set either a minimum weight or price for this
for example i would like it so this shipping option didnt show up unless the order total was over £32 or if the weight exceeded say 10kg

is it possible if not is it possible with the table rate module???

15 Oct 2006, 12:08 PM
#2
modchipfitters_co_uk avatar

modchipfitters_co_uk

Zen Follower

Join Date:
Sep 2006
Location:
United Kingdom
Posts:
190
Plugin Contributions:
0

Re: flat rate shipping - can u set a minimum wieght

has anyone got a solution to this???

15 Oct 2006, 3:35 PM
#3
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: flat rate shipping - can u set a minimum wieght

If you look how a function is used to enable/disable based on free shipping ... you could build your own function that checks the weight and total to further control this ...

      // disable only when entire cart is free shipping
      if (zen_get_shipping_enabled($this->code)) {
        $this->enabled = ((MODULE_SHIPPING_FLAT_STATUS == 'True') ? true : false);
      }

Trace down via the Developer's Tool Kit the function zen_get_shipping_enabled that is located in the Catalog and Admin ...

The concept here is, if you return a true value then the shipping module displays ... if you return a false value from the function then the shipping module cannot display or vanishes from the checkout_shipping ...