Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Is There A Way To Offer Free Shipping Up To A Certain Weight


Azure Moon

Recommended Posts

Posted

Hi Everyone!

 

Is there a way to offer free shipping, but only on orders up to two pounds in total weight (tare weight included) and any orders over the two pound limit would only be charged shipping for the weight over that two pounds?

 

I sell a wide variety of items - jewelry, candles, crystal balls, stone candle holders, etc. Most items fall well under two pounds, but items like the crystal balls and stone candle holders are quite heavy and costly to ship and rather than increasing the item's cost to cover the "free" shipping, or worse yet, eating the cost, I'd like to just limit the free shipping to two pounds.

 

I look forward to the OsCommerce guru's input!

 

Brightest Blessings,

 

Azure Moon

 

aka Dawn

Owner, Azure Moon Jewelry And Gifts

Posted

Try this on page 'catalog\checkout_shipping.php' on or about line 87:

$free_shipping = false;

if ( ($pass == true) && ($order->info['total'] >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER) ) {

$free_shipping = true;

 

Change to:

$free_shipping = false;

if ( (($pass == true) && ($order->info['total'] >= MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER)) || ($total_weight <= 2) ) {

Lloyd

Archived

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

×
×
  • Create New...