Page 1 of 2 12 LastLast
Results 1 to 10 of 18
  1. #1
    Join Date
    Apr 2006
    Location
    Sweden
    Posts
    26
    Plugin Contributions
    0

    Idea or Suggestion Free shipping if cart are over a certain value

    Is it possible to configure the shop so that if the cart is above a certain value, the order gets free shipping?

    Hope you understand what I'm after :)

    Thanks,

    Daniel

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

    Default Re: Free shipping if cart are over a certain value

    If this is for everyone, or can be broken down by National or International then you can just use the Order Total Module for Shipping ot_shipping and set the Free Shipping on orders over XX.XX ...
    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
    Apr 2006
    Location
    Sweden
    Posts
    26
    Plugin Contributions
    0

    Default Re: Free shipping if cart are over a certain value

    Thanks Linda! It was exactly what I was looking for.

    /Daniel

  4. #4

    Default Re: Free shipping if cart are over a certain value

    Quote Originally Posted by Ajeh View Post
    If this is for everyone, or can be broken down by National or International then you can just use the Order Total Module for Shipping ot_shipping and set the Free Shipping on orders over XX.XX ...
    What if it is not for everyone? For example, I have 2 Zone Definitions for National. How do I enable the above setup for only 1 of the National zones?

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

    Default Re: Free shipping if cart are over a certain value

    Customized code is a marvelous thing ...

    Problem is writting it ...

    If you cannot say your country (NATIONAL) is ALL given the Free Shipping -- or -- everyone NOT in your country (INTERNATIONAL) ... then customizing the code is necessary ...
    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

    Default Re: Free shipping if cart are over a certain value

    Quote Originally Posted by Ajeh View Post
    Customized code is a marvelous thing ...

    Problem is writting it ...

    If you cannot say your country (NATIONAL) is ALL given the Free Shipping -- or -- everyone NOT in your country (INTERNATIONAL) ... then customizing the code is necessary ...
    Yeah... I was hoping it could be done with existing code without customizing it.

  7. #7
    Join Date
    Dec 2005
    Location
    Littleton, CO
    Posts
    28
    Plugin Contributions
    0

    Default Re: Free shipping if cart are over a certain value

    Is there a way to use the free shipping options module, but with both a minimum price qualifier and maximum weight qualifier?

    For example, I tried setting Total >= $100.00 and Weight <= 24. Then I tested, and see that as long as I stay under 24 lbs, even if only $5, free shipping comes up. I imagine that same would happen if I was at $150 and 4 lbs.

    It seems like it's using a logical OR, rather than AND.


    Josh

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

    Default Re: Free shipping if cart are over a certain value

    You need to customize the module for Free Shipping Options freeoptions and change the OR to AND in the final settings to suit your needs:
    PHP Code:
    // final check for display of Free Options
          
    if ($this->ck_freeoptions_total or $this->ck_freeoptions_weight or $this->ck_freeoptions_items) {
            
    $this->enabled true;
          } else {
            
    $this->enabled false;
          } 
    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
    Dec 2005
    Location
    Littleton, CO
    Posts
    28
    Plugin Contributions
    0

    Default Re: Free shipping if cart are over a certain value

    That was it -- thank you!

  10. #10
    Join Date
    Sep 2006
    Posts
    449
    Plugin Contributions
    0

    Default Re: Free shipping if cart are over a certain value

    I am sooooooooo frustrated! I installed the free shipping side box module that tells they get free shipping after a certain amount. I went into Modules--order total--shipping ot and changed the amount to $50.00.

    It is still charging my customers shipping fees. why??????????????????????


    so what i want is...the sidebox that tells them (in red) or if they have already qualified.

    Shopping Cart [more]


    $35.00

    Add $15.00 to your order to qualify for Free Shipping!


    and I want the shipping to say "$0.00" once they have qualified and are checking out. I have done several tests and it is still charging me full price for shipping. I just dont get it....what am i doing wrong????

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. v152 FREE SHIPPING over a Certain Price - BUT SELECTED ITEMS
    By sle39lvr in forum General Questions
    Replies: 1
    Last Post: 13 May 2014, 11:29 PM
  2. v151 Offering Free Shipping over a certain amount and under a certain weight
    By jimmie in forum Addon Shipping Modules
    Replies: 0
    Last Post: 17 Aug 2013, 10:58 PM
  3. Disable free shipping over a certain weight
    By jameswilson in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 20 Jul 2009, 07:43 PM
  4. How to Offer Free SHipping over a Certain $$ AND Under Certain Weight
    By Jeff_Mash in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 31 Aug 2007, 06:00 PM
  5. free shipping over a certain price
    By g0d4lm1ty in forum General Questions
    Replies: 2
    Last Post: 22 Sep 2006, 07:36 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