Page 7 of 7 FirstFirst ... 567
Results 61 to 70 of 70
  1. #61
    Join Date
    Sep 2009
    Posts
    18
    Plugin Contributions
    0

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    HELP I can not figure out how to add a new post so I am just replying to this one.

    My customer called and my site is sending the message "not shipping to your area at this time" I tested the site and it does this to me also. I have not touched the site except to add products. I have 1.39e. I charge a flat rate for shipping and taxes are based on the store=MN. I set all my products as 0 rate so that they go to the flat rate shipping. This worked fine and is now not working. I have the zone turned off. I looked in book and can not find anything. Please I am not real versed in computer language so keep it simple. LOL

  2. #62
    Join Date
    Jul 2010
    Location
    Australia
    Posts
    131
    Plugin Contributions
    0

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    Okay so that part is working fine to charge the correct amounts based on those two manufacturers_id values ...
    The $50 that the cart charges for 1 product from manufacturers_id 1 and 1 product from manufacturers_id 2 should just be $35.

    If you add 1 Product to the order that is not in manufacturers_id 1 or 2 what is the amount?
    $3

    If you add 2 Product to the order that is not in manufacturers_id 1 or 2 what is the amount?
    $6

    If you add 1 Product to the order that is not in manufacturers_id 1 or 2 and add 1 Product from manufacturers_id 1 what is the amount?
    $18

    If you add 2 Product to the order that is not in manufacturers_id 1 or 2 and add 1 Product from manufacturers_id 1 what is the amount?
    $21 (this one and the one above should remain $15, as I do not charge shipping for items I stock when combined with drop-shipped products.)

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

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    Okay ...

    Are you saying ...

    if the cart contains 1 or more Product from manufactures_id 2 charge $35, regardless of any other product in the cart?

    if the cart contains 1 or more Product from manufactures_id 1 (and none from manufacturers_id 2) charge $15, regardless of any other product in the cart?

    And if the cart contains any number of Products from any thing and *none* from manufacturers_id 1 or 2 then charge the $3 per Item?
    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: v1.5.5]
    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. #64
    Join Date
    Jul 2010
    Location
    Australia
    Posts
    131
    Plugin Contributions
    0

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    Quote Originally Posted by Ajeh View Post
    Okay ...

    Are you saying ...

    if the cart contains 1 or more Product from manufactures_id 2 charge $35, regardless of any other product in the cart?

    if the cart contains 1 or more Product from manufactures_id 1 (and none from manufacturers_id 2) charge $15, regardless of any other product in the cart?

    And if the cart contains any number of Products from any thing and *none* from manufacturers_id 1 or 2 then charge the $3 per Item?
    Yes, that's what I'd like. Sorry if how I worded it was confusing.

    Again, thanks heaps for your help

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

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    That is very different from what it sounded like you wanted ...

    Start over with the Item Rate item shipping module and try the code as:
    Code:
    // class methods
        function quote($method = '') {
          global $order, $total_count;
    
        // check if manufacturer 1 or 2 is in cart
            global $cart;
            $chk_manufacturers_id1 = $_SESSION['cart']->in_cart_check('manufacturers_id', '1');
            $chk_manufacturers_id2 = $_SESSION['cart']->in_cart_check('manufacturers_id', '2');
    
            $chk_shipping_charges = 0.00;
    
            switch(true) {
            case ($chk_manufacturers_id2 > 0):
              $chk_shipping_charges = 35.00;
              break;
            case ($chk_manufacturers_id1 > 0):
              $chk_shipping_charges = 15.00;
              break;
            }
    
    
          // adjusted count for free shipping
          $item_total_count = $total_count - $_SESSION['cart']->free_shipping_items();
          $this->quotes = array('id' => $this->code,
                                'module' => MODULE_SHIPPING_ITEM_TEXT_TITLE,
                                'methods' => array(array('id' => $this->code,
                                                         'title' => MODULE_SHIPPING_ITEM_TEXT_WAY,
                                                         'cost' => ($chk_shipping_charges > 0 ? $chk_shipping_charges : ((MODULE_SHIPPING_ITEM_COST * $item_total_count) + MODULE_SHIPPING_ITEM_HANDLING) ) )));
    
          if ($this->tax_class > 0) {
    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: v1.5.5]
    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!

  6. #66
    Join Date
    Jul 2010
    Location
    Australia
    Posts
    131
    Plugin Contributions
    0

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    It works perfectly Thanks so much.

    I just have a couple of final questions that are a little off-topic...

    First - I mentioned earlier that I ship internationally, and therefore have the Zone Rates shipping mod installed. The only thing is that it shows on the shipping estimator when it is set to national shipping (which is Australia), saying "No shipping available to the selected country".

    Is there any way to get it to hide completely unless a customer specifies a country other than Australia?

    Second is the same as above, except reversed. So is there a way to hide the Per Item shipping module when a customer specifies an international country?

    Once more, I appreciate everything you've done and I'll be sending a cup of coffee your way (I'm going to have to ask you how I go about that, though).

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

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    Build a Zone for the Rest of the World and add it to the Item Rate item shipping module ...

    What are your settings on the Zone Rate zones shipping module? It sounds like you do not have a setting correct on it ...
    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: v1.5.5]
    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!

  8. #68
    Join Date
    Jul 2010
    Location
    Australia
    Posts
    131
    Plugin Contributions
    0

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    Build a Zone for the Rest of the World and add it to the Item Rate item shipping module ...
    After checking, I found I hadn't set up my Zone Definitions properly. Now that I've fixed them, the Per Item mod no longer displays internationally.

    What are your settings on the Zone Rate zones shipping module? It sounds like you do not have a setting correct on it ...
    Again, looking over the settings, I found I had overlooked the Skip Countries option on the Zone Rates mod

    So I think everything is sorted out now.

    As always, thanks for everything, and if you could give me the details I need to pay you, a well-earned cup of coffee will be on its way

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

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    Thanks for the update that all is working properly now ...

    The link for coffee and donuts to the Zen Cart Team is in my signature ...
    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: v1.5.5]
    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!

  10. #70
    Join Date
    Jul 2010
    Location
    Australia
    Posts
    131
    Plugin Contributions
    0

    Default Re: Can I apply Flat Rate to one Category & Zone, Per Weight for all other Categories

    Hi Linda

    It seems I overlooked one aspect of my shipping when I was discussing it with you...

    I have just now realised that I have some small accessories available from manufacturer 1, but which ship at a separate price.

    I managed to incorporate the shipping prices for them just fine using a table rate (up to 2 accessories for $5 and up to 10 for $10), but now I can't hide that module when the regular items from manufacturer 1 are in the cart.

    So, I want the Per Item module to show as before, when regular items from manufacturer 1 are in the cart, but to have it hide and the Table Rate module to show when accessories from manufacturer 1 are in the cart (each are listed in separate categories).

    I've tried to alter some of the codes you've given previously, but I've had no luck with it.

    This is what I had hoped would work:

    PHP Code:
    if ((IS_ADMIN_FLAG == false && $_SESSION['cart']->in_cart_check('master_categories_id','4') > 0)) && (('manufacturers_id','1') > 0)) {
              
    $this->enabled true;
          } else {
        
    $this->enabled false;
      } 
    I'd really appreciate it (again!) if you could show me what I need to change to get it to work

    Thanks,
    Tija

 

 
Page 7 of 7 FirstFirst ... 567

Similar Threads

  1. How do I use FLAT RATE for one item - and UPS Ship by weight for the other 8 items?
    By MarleneF in forum Built-in Shipping and Payment Modules
    Replies: 36
    Last Post: 31 Aug 2011, 04:15 PM
  2. Flat rate for 1 category, Per Item for all others
    By Znak in forum Built-in Shipping and Payment Modules
    Replies: 19
    Last Post: 18 Aug 2011, 03:09 PM
  3. Multiple zone/flat rate and added cost per pound?
    By AmyCapolupo in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 14 Jul 2011, 09:21 AM
  4. How Can I Set a Flat Rate for shipping on 1 item and rest by weight ?
    By vividbreeze in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 1 Jan 2010, 05:26 AM
  5. Flat Rate for some products, ship by weight for other products
    By caspar in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 28 Mar 2007, 01:12 AM

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR