Page 4 of 5 FirstFirst ... 2345 LastLast
Results 31 to 40 of 44
  1. #31
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Hi,
    I aa following the instructions ad finally had the customer be able to pick a faster shipping method evene if the freeoptions (minimum order) are met to grant free shipping. I have ot_shipping turned false (but installed)
    The problem I have is that when a product is flagged "always free shipping" and it is alone in the shopping cart, only free shipping appears and the customer can not pick a different shipping method.
    On which file should I work in order to allow the customer to pick a different shipping method when a always free shipping product is in the shopping cart?
    thanks

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

    Default Re: Free Shipping Options not working correctly

    What shipping methods do you have installed and which do you want to see when you have a Product marked as Always Free Shipping in the cart?

    By default, Products marked as Always Free Shipping only run the FREE SHIPPING freeshipper shipping module, unless the code is customized ...
    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!

  3. #33
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Hi, thanks for your answer.
    I have freeoptions and freeshipper installed, plus I have ot_freeshipping installed but set to false.
    When a always free shipping product is in the cart, I want to see the freeoptions.
    In other words I want to see ALWAYS the freeoptions with the freeshipping option when the cart value is over a set value.
    I hope it is clear enough.
    Ciao
    enzo

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

    Default Re: Free Shipping Options not working correctly

    What is the difference between the Free Shipping Options freeoptions and the FREESHIPPING freeshipping choices ... aren't they both offering Free Shipping?
    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!

  5. #35
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Ok I knew it was not clear.
    The first image shows freeoptions working when cart value is lower then set. In this case the customer can choose the shipping method he wants and pay for.
    The second image shows freeoptions working when cart value is higher then set. You can see that an added line appears with shipping cost at 0. I this case the customer can still choose to pay for a different shipping method.
    The third is when freeshipper kicks in because the product is always free shipping. As you can see there are no choices, the customer can not choose a different shipping method.

    What I want is that in any case only the first or the second image appears depending only on the settings of the freeoptions module. In other words I want the customer to be able to change the shipping method even if the product is always freeshipping.
    Thanks again
    enzo
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	freeoptions_value_not_enough.jpg 
Views:	75 
Size:	51.5 KB 
ID:	9929   Click image for larger version. 

Name:	freeoptions_value is_enough.jpg 
Views:	61 
Size:	53.0 KB 
ID:	9930   Click image for larger version. 

Name:	freeshipper_product always_free_shipping.jpg 
Views:	72 
Size:	43.4 KB 
ID:	9931  


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

    Default Re: Free Shipping Options not working correctly

    You would need to customize your Shipping Modules so that they do not check if the cart is Always Free Shipping ...

    For example, on the Flat Rate flat shipping module in:
    /includes/modules/shipping/flat.php

    you would see the code:
    Code:
          // disable only when entire cart is free shipping
          if (zen_get_shipping_enabled($this->code)) {
            $this->enabled = ((MODULE_SHIPPING_FLAT_STATUS == 'True') ? true : false);
          }
    To have that run when Always Free Shipping is the only thing in the cart, you need to comment out the test:
    Code:
          // disable only when entire cart is free shipping
    //      if (zen_get_shipping_enabled($this->code)) {
            $this->enabled = ((MODULE_SHIPPING_FLAT_STATUS == 'True') ? true : false);
    //      }
    Once you have your shipping module running at the same time, you need to determine what the shipping is based on to see if there needs to be further adjustment to the code ...
    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. #37
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Perfect!!!!!! Just Perfect.
    I have hacked all the shipping modules I use and now it works exactly like I want. THANK THANK THANK.
    I could not imagine that all the methods were allowed and needed to be disallowed in certain cases.

    One last question,
    How do I set the default shipping method when free shipment is listed? The radio button does not come out selected at free shipping option.
    (the picture in the post before, were the free shipping is selected is not the way it comes out, I selected it before capturing)

    Again lots of thanks to you Linda.
    enzo
    Last edited by enzo-ita; 5 Dec 2011 at 06:34 PM.

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

    Default Re: Free Shipping Options not working correctly

    Try logging out as the Customer and logging in as the Customer ... then go to the Checkout ...

    Is the Free Shipping Options selected?
    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. #39
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    You you you you know one more then Devil does!!!!
    Yes it is selected.
    Without offense, can I send you a Kiss?
    Ciao from Italy.
    enzo

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

    Default Re: Free Shipping Options not working correctly

    Thanks for the update that this is working correctly for you ...
    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 4 of 5 FirstFirst ... 2345 LastLast

Similar Threads

  1. v154 Free Shipping Not Working Correctly?
    By Jeff_Mash in forum Upgrading to 1.5.x
    Replies: 1
    Last Post: 30 Mar 2015, 09:04 PM
  2. 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
  3. v139h Free Shipping Options Not Working.
    By glamourdolleyes in forum Addon Shipping Modules
    Replies: 19
    Last Post: 20 Feb 2012, 02:43 AM
  4. Free shipping with restrictions not working correctly
    By homer-j-simpson137 in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 1
    Last Post: 17 Mar 2011, 12:44 AM
  5. Free Shipping not working correctly after upgrade?
    By Jeff_Mash in forum Upgrading from 1.3.x to 1.3.9
    Replies: 2
    Last Post: 6 Oct 2010, 03:39 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