Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Free shipping and payment module problem


ActiveTuning

Recommended Posts

I have the old checkout scheme and am using the free shipping and payment module. If a product has a weight the free shipping still comes up as a rate option. Is there a way to make it so that unless there is a product in the cart with a weight of 0 that it does not even show as an option?

Link to comment
Share on other sites

Hi,

I had that problem before.... Here how I fixed it.

 

catalog/includes/functions/web_makers_added_functions.php

 

Original

 

// Verify Free Shipping or Regular Shipping modules to show

function tep_get_free_shipper($chk_shipper) {

global $cart;

$show_shipper =false;

switch (true) {

 

change true to false

 

after....

// Verify Free Shipping or Regular Shipping modules to show

function tep_get_free_shipper($chk_shipper) {

global $cart;

$show_shipper =false;

switch (false) {

 

that is line 59 in my php.

 

I have quantity controller installed..... Hope this will help

 

Nouck

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...