Page 1 of 5 123 ... LastLast
Results 1 to 10 of 44
  1. #1
    Join Date
    Mar 2008
    Location
    Southeast Louisiana
    Posts
    25
    Plugin Contributions
    0

    Default Free Shipping Options not working correctly

    Hello all,

    I'm using the Free Shipping Options module because I want to offer free shipping on orders over $100. I also want to give customers the ability to upgrade the shipping for faster delivery. The manual says to use free shipping options module for this, however when I go to the checkout I get free shipping only with no other shipping methods. I am using UPS only as a shipper.

    Any ideas?

    Thanks,

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

    Default Re: Free Shipping Options not working correctly

    Sounds like you may be using Free Shipping freeshipper vs Free Shipping Options freeoptions ...

    Also, you may have 0 weight products with 0 weight defined as Free Shipping which would run with the Free Shipping freeshipping module ...

    Which shipping modules are actually installed?

    What is the weight of your order?

    Have you an URL that we could peek at and can you tell us what to add to the cart to recreate the problem that you are having?
    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!

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

    Default Re: Free Shipping Options not working correctly

    NOTE: check that you do NOT have the Modules ... Order Totals ... Shipping ot_shipping setup as Free Shipping on Orders over 100.00 or you will also lose the additional shipping choices that the Free Shipping Options freeoptions shipping module is designed to allow for ...
    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. #4
    Join Date
    Mar 2008
    Location
    Southeast Louisiana
    Posts
    25
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Thanks, Linda! I had the Order Totals ot_shipping module enabled. I set it to false and all is well.

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

    Default Re: Free Shipping Options not working correctly

    We put those settings in there purely for sport ...
    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. #6
    Join Date
    Jul 2009
    Posts
    402
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Hi,
    I am trying to achieve that when ot_freeshipping is false, and freeopitons is true in the shopping cart box appears the same warning/suggestion that appears when ot_freeshipping is true and freeoptions is false.

    I have hacked the tpl_shopping_cart.php as follows for the section free shipping qualifier

    //Begin free shipping qualifier
    $free_ship_on = MODULE_SHIPPING_FREEOPTIONS_STATUS;

    if ($free_ship_on == 'true') {
    $free_limit = MODULE_SHIPPING_FREEOPTIONS_TOTAL_MIN;
    if ($_SESSION['cart']->count_contents() > 0) {
    $_SESSION['cart']->get_products();
    $basket_total = $_SESSION['cart']->show_total();
    if ($basket_total < $free_limit) {
    $diff_to_free = ($free_limit - $basket_total);
    $content .= '<span class="freeoptions">' . '<style="text-align: center; "><span style="font-size: small; "><span style="color: rgb(255, 0, 0); "><b>Aggiungendo prodotti per '. $currencies->format($diff_to_free) .' <style="text-align: center; "><span style="font-size: small; "><span style="color: rgb(255, 0, 0); "><b>avrai diritto alla spedizione gratuita!</b></span></span>' . '</span>';
    } else {
    $content .= '<span class="freeoptions">' . '<p style="text-align: center; "><span style="font-size: small; "><span style="color: rgb(255, 0, 0); "><b>Complimenti! Hai diritto alla spedizione gratuita!</b></span></span>' . '</span>';
    }
    } else {
    $content .= '<span class="freeshipping">' . 'Spedizione gratuita per ordini di ' . $currencies->format($free_limit) . ' or more.' . '</span>';
    }
    }
    //End of free shipping qualifier
    The original tpl_shopping_cart file is
    //Begin free shipping qualifier
    $free_ship_on = MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING;

    if ($free_ship_on == 'true') {
    $free_limit = MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER;
    if ($_SESSION['cart']->count_contents() > 0) {
    $_SESSION['cart']->get_products();
    $basket_total = $_SESSION['cart']->show_total();
    if ($basket_total < $free_limit) {
    $diff_to_free = ($free_limit - $basket_total);
    $content .= '<span class="freeshipping">' . '<style="text-align: center; "><span style="font-size: small; "><span style="color: rgb(255, 0, 0); "><b>Aggiungendo prodotti per '. $currencies->format($diff_to_free) .' <style="text-align: center; "><span style="font-size: small; "><span style="color: rgb(255, 0, 0); "><b>avrai diritto alla spedizione gratuita!</b></span></span>' . '</span>';
    } else {
    $content .= '<span class="freeshipping">' . '<p style="text-align: center; "><span style="font-size: small; "><span style="color: rgb(255, 0, 0); "><b>Complimenti! Hai diritto alla spedizione gratuita!</b></span></span>' . '</span>';
    }
    } else {
    $content .= '<span class="freeshipping">' . 'Spedizione gratuita per ordini di ' . $currencies->format($free_limit) . ' or more.' . '</span>';
    }
    }
    //End of free shipping qualifier
    But it does not work.
    The shipping qualifier does not appears.
    Can someone help me in achieveing this?
    Thanks
    enzo
    Last edited by enzo-ita; 21 Mar 2011 at 08:14 PM.

  7. #7
    Join Date
    Mar 2011
    Posts
    364
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Hi Linda, I remember you from back in osCommerce.

    Anyways, just curious. I cannot get FREE SHIPPING & HANDLING for orders $100 or more to work. When I do a test it keeps saying can't do it for this zone or something rather.

    I have no special shipping modules install, just using the stock 1.3.9h stuff.

    Can you please tell me like a 3rd grader WHAT SETTINGS I need to use in the PAYMENT, SHIPPING AND TOTAL modules?

    Thanks.

    p.s. I've tried every which way possible.

    TIA

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

    Default Re: Free Shipping Options not working correctly

    You can use the Modules ... Order Total ... Shipping ot_shipping and set the amount to 100.00 and Enable the 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: 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. #9
    Join Date
    Mar 2011
    Posts
    364
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Quote Originally Posted by Ajeh View Post
    You can use the Modules ... Order Total ... Shipping ot_shipping and set the amount to 100.00 and Enable the Free Shipping ...
    Dooohhhhhh! I forgot to add. Orders 99.99 or less incurs a 11.95 fee. Where does that go?

  10. #10
    Join Date
    Mar 2011
    Posts
    364
    Plugin Contributions
    0

    Default Re: Free Shipping Options not working correctly

    Also all our products have no weight or size

 

 
Page 1 of 5 123 ... 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

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