Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 42
  1. #11
    Join Date
    Jul 2006
    Posts
    112
    Plugin Contributions
    1

    Default Re: Disable table shipping after certain rate

    just replied the mail...changed the global line

    test it and let me know

  2. #12
    Join Date
    Jul 2006
    Posts
    112
    Plugin Contributions
    1

    Default Re: Disable table shipping after certain rate

    Quote Originally Posted by limelites View Post
    I actually have a similar problem, which I why I was looking at the OP. My problem is that when an international cart weighs over 2kg, my shipping module cannot find any option as my carrier does not ship over this weight as standard and I have not inserted 2kg+++ into the tariffs. So, since it cannot find an option for 2kg, it goes into a redirect loop and gives a browser error page.

    Apart from setting a cray price in the tariff pages, is there a way to sort out the redirect loop? Direct to a page that requests the customer contact us for a shipping quote?
    why don't you set it as "Not available for weight over 2KG". If this displays as an error message, it would help customers to know it's not supported.

    BTW, didn't you use other shipping method?

  3. #13
    Join Date
    May 2009
    Posts
    6
    Plugin Contributions
    0

    Default Re: Disable table shipping after certain rate

    Hey Limelites....

    ebusinessman might be able to help... I'm a newbie...

  4. #14
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Disable table shipping after certain rate

    Quote Originally Posted by ebusinessman View Post
    why don't you set it as "Not available for weight over 2KG". If this displays as an error message, it would help customers to know it's not supported.

    BTW, didn't you use other shipping method?
    Hi, yes, I would use another shipping method but can't put tariffs in the tables for over 2kg as the tariffs change daily. I like to shop around for courier quotes when an international package gets into the unknown zone of 2kg++

    Looking at disabling the module for 2kg+ it does not give this option. It only gives options for monetary values.

  5. #15
    Join Date
    Jul 2006
    Posts
    112
    Plugin Contributions
    1

    Default Re: Disable table shipping after certain rate

    disable 2kg+should be possible. the problem is how do you deal with the products over 2KG, I think a new shipping module that only handle this problem should be better. then you should have your own policy to this.

    about dynamic tarrif, you can set it in admin daily if the shipping module support this (rebuild it and set in an extra field namely "daily tarrif")

    so many interesting things in shipping as business varies...

  6. #16
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: Disable table shipping after certain rate

    Thanks ebusinessman, I will have to look into that. Daily tariff sounds good, although having to manually update tariffs every day will not be practical.

    I will probably just add each tariff 2.1:xx,2.2:xx,29.9:xxxx, etc., into my existing module and add a factor of safety to each one :-)

    Thanks...

  7. #17
    Join Date
    Jul 2006
    Posts
    112
    Plugin Contributions
    1

    Default Re: Disable table shipping after certain rate

    hmm...you can set up cronjob to update it daily, which read the tarrif data from 3rd party site, or you can input it outside admin panel...not a big deal in fact. leave me PM if you need more help and it will send to my email box...I am not alway on forum

    g'day

  8. #18
    Join Date
    Feb 2007
    Posts
    513
    Plugin Contributions
    2

    Default Re: Disable table shipping after certain rate

    I have a aust post module that is good for anything under 18KG's but a [FONT=Verdana]courier [/FONT]needs to take anything over 18KG's

    I needed my zone rates to only come in to affect after 18KG's, heres the code I used to [FONT=Verdana]achieve [/FONT]this:

    In includes/modules/shipping/zonetable.php
    Or in
    includes/modules/shipping/any_shipping_mod.php

    Find this code

    PHP Code:
     // disable only when entire cart is free shipping 
        
    if (zen_get_shipping_enabled($this->code)) { 
          
    $this->enabled = ((MODULE_SHIPPING_ZONETABLE_STATUS == 'True') ? true false); 
        } 
    DIRECTLY BENEATH IT, add the following:

    PHP Code:
    // Check for Weight and display module if weight exceeds stated value 
    if (IS_ADMIN_FLAG == false && $_SESSION['cart']->show_weight() < 18) { 
      
    $this->enabled false
    } else { 
      
    $this->enabled true

    So it now looks something like:

    HTML Code:
     
          // disable only when entire cart is free shipping
          if (zen_get_shipping_enabled($this->code)) {
            $this->enabled = ((MODULE_SHIPPING_ZONES_STATUS == 'True') ? true : false);
          }
     
    // Check for Weight and display module if weight exceeds stated value 
    if (IS_ADMIN_FLAG == false && $_SESSION['cart']->show_weight() < 18) { 
      $this->enabled = false; 
    } else { 
      $this->enabled = true; 
    }  
     
          // CUSTOMIZE THIS SETTING FOR THE NUMBER OF ZONES NEEDED
          $this->num_zones = 3;
        }
     
     

  9. #19
    Join Date
    May 2006
    Posts
    30
    Plugin Contributions
    1

    Default Re: Disable table shipping after certain rate

    I am trying to do the exact same thing as lilblocker without much success.

    I have tried adding

    PHP Code:
            if ($shipping_weight 3) {
            
    $check_flag false;
        } 
    into the table module after the freeshipping argument line, but this didn't work, also with many other thingsi have tried.

    I noted a solution may have been obtained by email, could you please paste the code into the thread so i may try it?

    Thank you

    Jai

  10. #20
    Join Date
    May 2006
    Posts
    30
    Plugin Contributions
    1

    Default Re: Disable table shipping after certain rate

    PHP Code:
            if ($shipping_weight 3) {
            
    $this->enabled false;
        } 
    the php should have read

 

 
Page 2 of 5 FirstFirst 1234 ... LastLast

Similar Threads

  1. Hide table rate shipping under a certain weight
    By Kcin in forum Built-in Shipping and Payment Modules
    Replies: 10
    Last Post: 20 Jul 2020, 04:45 PM
  2. v153 How to disable table rate shipping module after certain weight
    By samuxul in forum Built-in Shipping and Payment Modules
    Replies: 7
    Last Post: 4 Mar 2015, 04:45 AM
  3. Table Rate enable after certain shopping cart price value?
    By jmwiley in forum Code Collaboration
    Replies: 3
    Last Post: 8 Apr 2013, 04:16 PM
  4. Table Rate shipping PLUS a handling fee for certain items
    By marvin in forum Built-in Shipping and Payment Modules
    Replies: 13
    Last Post: 19 Apr 2009, 05:20 PM
  5. Disable Flat rate after weight of cart is over a certain amoun
    By brettw in forum Built-in Shipping and Payment Modules
    Replies: 8
    Last Post: 7 Mar 2009, 08:38 PM

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