Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 28
  1. #11
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Give yourself time ... you will get the hang of it ...

    I am still learning it and have been using it for years ...
    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!

  2. #12
    Join Date
    Dec 2010
    Posts
    142
    Plugin Contributions
    0

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Quote Originally Posted by Ajeh View Post
    If you mark the Free Shipping Products for the US as Always Free Shipping and add weight to them ... you can make the following customizations to make the Regular Shipping modules show at the same time as the Always Free Shipping module for your Zone Definition that is allowed to have Free Shipping on these products that are marked as Always Free Shipping ... and for those not in the Zone Definition, only the Regular shipping modules will work ...

    Let's say you want to offer Always Free Shipping for your Zone Definition that is allowed Free Shipping and show Regular shipping modules at the same time, using USPS as the example ...

    Customize the file:
    /includes/modules/shipping/usps.php

    with the code in RED:
    Code:
    // bof: Always show regular shipping even when Always Free Shipping
        // disable only when entire cart is free shipping
    //    if (zen_get_shipping_enabled($this->code)) {
          $this->enabled = ((MODULE_SHIPPING_USPS_STATUS == 'True') ? true : false);
    //    }
    // eof: Always show regular shipping even when Always Free Shipping
    Customize the file:
    /includes/classes/shipping.php

    with the code in RED:
    Code:
      function calculate_boxes_weight_and_tare() {
        global $total_weight, $shipping_weight, $shipping_quoted, $shipping_num_boxes;
    
    // bof: Always show regular shipping even when Always Free Shipping
        $total_weight += $_SESSION['cart']->free_shipping_weight;
    // eof: Always show regular shipping even when Always Free Shipping
    
        if (is_array($this->modules)) {
    Then, on the FREE SHIPPING freeshipper shipping module, add the Zone Definition that is allowed to have Free Shipping and show the other shipping modules at the same time ...
    Linda,

    I tried implementing this change but with the zones shipping module instead of USPS. Everything works as it's supposed to when the customer has an address based in zone USA. When ALWAYS FREE SHIPPING products with weights associated with them are the only items in the cart, the Free Shipping Only and my standard Zone Shipping shipping options are both present during checkout. However, when the customer's address is NOT within zone USA and and the cart only has ALWAYS FREE SHIPPING products in it (with weights associated with them), there are NO shipping options presented at checkout. At step 1 of checkout, it says "This is currently the only shipping method available to use on this order.", then there are NO SHIPPING OPTIONS PRESENT with radio buttons. When you try to click the continue checkout button to proceed to step 2, it simply refreshes the step 1 page.

    Any ideas?

    Thank you!

  3. #13
    Join Date
    Dec 2010
    Posts
    142
    Plugin Contributions
    0

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Harmless bump.

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

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Do you have a Zone set on the FREE SHIPPING! freeshipper shipping module?
    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!

  5. #15
    Join Date
    Dec 2010
    Posts
    142
    Plugin Contributions
    0

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Quote Originally Posted by Ajeh View Post
    Do you have a Zone set on the FREE SHIPPING! freeshipper shipping module?
    Thank you for your reply. Yes, I have a zone set on freeshipper... USA.

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

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Always Free Shipping is designed to make a Product have Free Shipping using the FREE SHIPPING! freeshipper shipping module ...

    That shipping module is not really designed to have Zones in the conventional manner but is there for customization purposes ...

    What are you trying to do with the Always Free Shipping setting on your products?
    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!

  7. #17
    Join Date
    Dec 2010
    Posts
    142
    Plugin Contributions
    0

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Quote Originally Posted by Ajeh View Post
    Always Free Shipping is designed to make a Product have Free Shipping using the FREE SHIPPING! freeshipper shipping module ...

    That shipping module is not really designed to have Zones in the conventional manner but is there for customization purposes ...

    What are you trying to do with the Always Free Shipping setting on your products?
    First of all, I have searched and searched the forums for a solution to my real problem and have not found an answer. It seems many others are having the same issue.

    I was trying to use this solution as a workaround to a problem I am having when ALWAYS FREE SHIPPING products are the only items in the cart, and the customer has a shipping address outside zone USA.

    If the customer's shipping address is outside zone USA and all items in their cart are ALWAYS FREE SHIPPING products, they get an error at checkout that says "Sorry, we are not shipping to your region at this time." I really need to get this fixed, and thought that this might be a solution since you said in previous post that the Free Shipping shipping option will show for it's designated zone, but won't appear for anything outside that zone while the regular shipping options for that zone will still appear as long as a weight is associated with the ALWAYS FREE SHIPPING products. I need a solution to this

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

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    What is suppose to determine the shipping on your Always Free Shipping products for outside of the US?
    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!

  9. #19
    Join Date
    Dec 2010
    Posts
    142
    Plugin Contributions
    0

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Quote Originally Posted by Ajeh View Post
    What is suppose to determine the shipping on your Always Free Shipping products for outside of the US?
    I am using the Shipping By Quote shipping module for zones outside the USA. It's an addon and is simply a modified version of the flat shipping module.

    So, I want that module to recognize that there is a weight associated with the ALWAYS FREE SHIPPING products and have it appear for zones outside the USA... and have the Free Shipping option NOT APPEAR for zones outside the USA.
    Last edited by lolwaut; 28 Jan 2014 at 05:18 PM.

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

    Default Re: Calculated shipping doesn't show up when an item is free shipping.

    Have you a link to that add on? I am not following how a clone of Flat Rate flat is calculating shipping regarding weight ...
    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!

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. v139h When I add a FREE SHIPPING item to cart, it changes shipping of other items
    By rshelton in forum Built-in Shipping and Payment Modules
    Replies: 5
    Last Post: 25 Nov 2012, 01:24 AM
  2. Show Item is FREE shipping in the CART.
    By gloerick in forum General Questions
    Replies: 42
    Last Post: 14 Mar 2011, 02:25 PM
  3. Replies: 2
    Last Post: 12 Mar 2011, 02:40 PM
  4. Per Weight Shipping not Calculated when Tax is Calculated
    By CascianoLtd in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 28 Sep 2009, 04:29 AM
  5. Free shipping item weight calculated wrongly for non valid free shipping zone
    By firehorse in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 28 Oct 2006, 05:39 PM

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