Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / shipping please help!

shipping please help!

Locked

Views: 1,064

Results 1 to 10 of 10
This thread is locked. New replies are disabled.
17 Jan 2009, 4:13 PM
#1
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

shipping please help!

1.3.8
Hello, I have shipping table rates... using the mod: Table Rate Clone... for table 2 and 4 clone...The max i can use for these is 25lbs... customer just was able to slect from this table and got free shipping shows $0.00 for shipping how do i get out of this? how can i set it that this wont happen

17 Jan 2009, 4:35 PM
#2
ajeh avatar

ajeh

Oba-san

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

Re: shipping please help!

Waht have you set for the Rates for this?

17 Jan 2009, 4:43 PM
#3
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: shipping please help!

2nd day shipping:
1:19.99,2:21.99,3:24.50,4:26.99,5:29.99,6:33.50,7:37.50,8:41.50,9:44.50,10:47.50,11:51.99,12:55.50,13:57.99,14:61.50,15:65.50,16:66.99,17:69.99,18:72.50,19:74.99,20:77.50,21:80.50,22:82.99,23:85.99,24:88.50,25:88.99

next day shipping:
1:47.25,2:51.61,3:55.86,4:60.16,5:65.51,6:70.70,7:76.89,8:81.84,9:86.72,10:91.67,11:98.38,12:103.08,13:105.14,14:109.10,15:115.05,16:116.62,17:119.26,18:121.84,19:124.54,20:127.12,21:129.76,22:132.40,23:135.37,24:138.93,25:138.67

these are the prices from my drop shipper and the max for these two can only be 25lbs...but it shows up in checkout as $0.00 when it exceds 25lbs..... What is the correct thing to do with my customer, just refund them and apploigize because even if i do ground shipping it will cost me $50

17 Jan 2009, 4:51 PM
#4
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: shipping please help!

oh forgot if this will help 2nday = table 2 next day= table 3

17 Jan 2009, 5:45 PM
#5
ajeh avatar

ajeh

Oba-san

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

Re: shipping please help!

Your settings define all the way to 25 ... then nothing ... so the shipping charge is nothing as in $0.00 ... :eek:

You need to set something to handle everything from above 25, like:
10000:99.99 ...

17 Jan 2009, 6:29 PM
#6
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: shipping please help!

but i cannot use that shipping method with my drop shipper after 25lbs

17 Jan 2009, 6:41 PM
#7
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: shipping please help!

I need table 2 and table 3 to go away once the cart is over 25lbs... Ajeh like how you helped me out with this post: http://www.zen-cart.com/forum/showthread.php?t=109713

18 Jan 2009, 4:47 AM
#8
ajeh avatar

ajeh

Oba-san

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

Re: shipping please help!

And you do plan to remember me when you are rich and famous ... right? :cool:

Edit the shipping module:
/includes/modules/shipping/table.php

and you will see this code:

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

change it to read:

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

    global $cart;
    if (IS_ADMIN_FLAG === true || $_SESSION['cart']->show_weight() > 25) {
        $this->enabled = false;
    }

That turns it off on any thing greater than 25 lbs ...

18 Jan 2009, 7:20 AM
#9
ryanb4614 avatar

ryanb4614

Totally Zenned

Join Date:
Feb 2008
Posts:
556
Plugin Contributions:
0

Re: shipping please help!

worked!!!!! thank you very much! rich and famous hahaha i wish

18 Jan 2009, 3:42 PM
#10
ajeh avatar

ajeh

Oba-san

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

Re: shipping please help!

Glad to hear that this worked for you ... :smile: