Page 2 of 2 FirstFirst 12
Results 11 to 20 of 20
  1. #11
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: table rate not working?!

    thakyou Ajeh, i had taken that bit off before after Kobra's first reply but just to be sure ive copied and pasted your cost settings in your post and still no change.

    i have also disabled the uk zone and no change either :/

    i am concerned that your unable to recreate this issue and also the fact that searching for others with the same issue returns nothing? i know that you used 1.3.9h and i am using 1.3.8a perhaps this is some of the cause of that, however as i said before i have a number of mods (all tailored for my store of course) upgrading isnt really an option for me at the moment until these mods also suit the latest version of zen cart.

  2. #12
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: table rate not working?!

    Quote Originally Posted by kobra View Post
    Does yours work for any weight or does it just display "0"
    i have the weight displayed at the top of my cart and it works up until 1600lbs, anything above it just displays n/a (i am using a mod which displays shipping in cart instead of shipping estimator)

    Quote Originally Posted by Ajeh View Post
    Are you saying everything works properly right now with my setting ...
    no im afraid there is still no change even with your setting

    i dont know if it will help or not but my site address is

    l i v v y l o u . c o . u k

    the best product (as the shop is not launched yet) to use and add to cart to recreate the problem is :

    /index.php?main_page=product_info&cPath=61&products_id=566

    as i have set these to weigh 50lbs each

    up to 1600lbs gives the customer a price, anything above just states n/a and refuses to give a shipping method in checkout

    testing login is:

    username: [email protected]
    pass: testing

  3. #13
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: table rate not working?!

    Could you post all of your settings in the Configuration ... Shipping/Packaging ...

    Could you also go to the Modules ... Shipping ... and click once on Table Rate table and post what is in the right side column for the settings ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  4. #14
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: table rate not working?!

    configuration / shipping

    HTML Code:
    Country of Origin 	United Kingdom 	 
    Postal Code 	ME4 6BA 
    Enter the Maximum Package Weight you will ship 	100000 
    Package Tare Small to Medium - added percentage:weight 	0:0
    Larger packages - added packaging percentage:weight 	0:0
    Display Number of Boxes and Weight Status 	0
    Order Free Shipping 0 Weight Status 	0
    Shipping Estimator Display Settings for Shopping Cart 	2
    Display Order Comments on Admin Invoice 	1
    Display Order Comments on Admin Packing Slip 	1
    Shipping Rates in Cart - No Shipping Behaviour 	Display a word
    Shipping Rates in Cart - Display Currency Code 	No 
    Shipping Rates in Sidebox - Enable 	false
    Shipping Rates in Sidebox - Suppress 	No
    Shipping Rates in Sidebox - Display Currency Code   No
    modules/ shipping

    HTML Code:
    Enable Table Method
    True
    
    Shipping Table
    450:1.50,500:2.00,550:2.50,600:2.75,650:3.00,700:3.50,800:3.95, 850:4.50,1100:5.00, 1200:5.50,1300:6.00,1500:6.50,1600:7.00,1700:7.20,1750:7.40, 1800:7.60,1850:8.5 0,2500:9.00,100000:10.00
    
    Table Method
    weight
    
    Handling Fee
    0
    
    Tax Class
    --none--
    
    Tax Basis
    Shipping
    
    Shipping Zone
    --none--
    
    Sort Order
    1

  5. #15
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: table rate not working?!

    not sure why that has pasted with spaces on the table rate costs but it has no spaces in admin

  6. #16
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: table rate not working?!

    Sounds like you might have some kind of customization to the Table Rate table file ...

    If you compare the original file:
    /includes/modules/shipping/table.php

    from a clean v1.3.8 copy of the file, to the copy on the server ... are there any changes between the two files?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  7. #17
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: table rate not working?!

    my file

    HTML Code:
        $this->tax_basis = MODULE_SHIPPING_TABLE_TAX_BASIS;
        // disable only when entire cart is free shipping
    //bof disable if price over 50
     if (zen_get_shipping_enabled($this->code)) {
          $this->enabled = ((MODULE_SHIPPING_TABLE_STATUS == 'True') ? true : false);
        }
    
    // Check for Weight and display module if weight exceeds stated value
    if (IS_ADMIN_FLAG == false && $_SESSION['cart']->show_total() > 50) {
      $this->enabled = false;
    }
    //end disable if price over 50
        if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_TABLE_ZONE > 0) ) {

    clean file
    HTML Code:
        $this->tax_basis = MODULE_SHIPPING_TABLE_TAX_BASIS;
        // disable only when entire cart is free shipping
        if (zen_get_shipping_enabled($this->code)) {
          $this->enabled = ((MODULE_SHIPPING_TABLE_STATUS == 'True') ? true : false);
        }
    
        if ( ($this->enabled == true) && ((int)MODULE_SHIPPING_TABLE_ZONE > 0) ) {
    this is the only difference winmerge has picked up, would this affect my cart ? i have no free shipping enabled at all at the moment, im also unsure of where this has come from to be quite honest?

  8. #18
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: table rate not working?!

    Yes ... it says if the Order Total is over 50.00 it should turn OFF the shipping module and you will not see it so there will be NO shipping available ...

    What do you want to happen when the Order is over $50.00 ... is the customer allowed to checkout? If so, what are you really trying to do with shipping when the order amount is over $50.00 ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  9. #19
    Join Date
    Jun 2009
    Location
    Kent, UK
    Posts
    347
    Plugin Contributions
    5

    Default Re: table rate not working?!

    ive removed that and all is working fine, i have no idea where that came from at all!!

    thank you so much for your help! im sorry it was something so trivial!

  10. #20
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: table rate not working?!

    Not a problem ... think how many others you helped by discovering that your code had been customized in such a way that you did not know why it could not work with certain amounts in the shopping cart that did not make sense ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. Table rate and free shipping not working correctly.
    By robbin21973 in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 1 Jan 2013, 07:36 PM
  2. Table Rate Shipping not working right?
    By Ihateartists in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 10 Nov 2010, 09:37 PM
  3. Shipping 2nd 'Table Rate' not working?
    By Coolie in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 9 Feb 2010, 12:45 AM
  4. table rate shipping not working with google checkout
    By spikeycactus in forum Addon Payment Modules
    Replies: 5
    Last Post: 20 Apr 2009, 11:15 AM
  5. Table Rate by Price not working
    By 4thwave in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 29 Dec 2008, 03:00 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg