Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 21
  1. #11
    Join Date
    Jun 2009
    Posts
    275
    Plugin Contributions
    0

    Default Re: Free shipping plus options?

    Hi Ajeh,

    Yes, I am referring to USPS Media Mail. I use USPS only, no Fedex or anyone else. Here are some screen shots...

    Click image for larger version. 

Name:	Capture.jpg 
Views:	58 
Size:	30.7 KB 
ID:	13265Click image for larger version. 

Name:	Capture2.jpg 
Views:	48 
Size:	35.7 KB 
ID:	13266Click image for larger version. 

Name:	Capture3.jpg 
Views:	40 
Size:	42.3 KB 
ID:	13267Click image for larger version. 

Name:	Capture4.jpg 
Views:	42 
Size:	47.9 KB 
ID:	13268

    Continued next post...

  2. #12
    Join Date
    Jun 2009
    Posts
    275
    Plugin Contributions
    0

    Default Re: Free shipping plus options?

    ....Continued from previous post

    Click image for larger version. 

Name:	Capture5.jpg 
Views:	56 
Size:	30.4 KB 
ID:	13269

    The next two show the shipping estimator with ot_shipping, "free shipping for order over $100.00" turned on and off. Shipping estimator disappears when on.

    Click image for larger version. 

Name:	Capture6.jpg 
Views:	57 
Size:	22.6 KB 
ID:	13270Click image for larger version. 

Name:	Capture7.PNG 
Views:	61 
Size:	6.1 KB 
ID:	13271

    And lastly, this is a shot of shipping options during checkout with free shipping turned on. All options disappear...

    Click image for larger version. 

Name:	Capture8.jpg 
Views:	46 
Size:	11.0 KB 
ID:	13272

    I have ot_shipping "free shipping" turned off as you recommended. Whatever other info you need please let me know.

    Thank you!!!

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

    Default Re: Free shipping plus options?

    Just for a little clean up ... add to your stylesheet.css
    Code:
    .hiddenField {
      display: none;
    }
    .visibleField {
      display: inline;
    }
    Now if you double check things and go to Modules ... Shipping ... you see only the shipping modules with green dots turned on for:
    USPS

    You want MEDIA to be Free and still show the other USPS shipping methods, correct?

    Are there any constraints based on Products in the Cart that cannot be sent by MEDIA mail for Free?
    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!

  4. #14
    Join Date
    Jun 2009
    Posts
    275
    Plugin Contributions
    0

    Default Re: Free shipping plus options?

    Quote Originally Posted by Ajeh View Post
    Just for a little clean up ... add to your stylesheet.css
    Code:
    .hiddenField {
      display: none;
    }
    .visibleField {
      display: inline;
    }
    Now if you double check things and go to Modules ... Shipping ... you see only the shipping modules with green dots turned on for:
    USPS

    You want MEDIA to be Free and still show the other USPS shipping methods, correct?

    Are there any constraints based on Products in the Cart that cannot be sent by MEDIA mail for Free?

    Thank you for that stylesheet code...I never knew what that extra box was all about

    You are correct, the only shipping module is USPS, all others are off. Media Mail to be free when a customer spends $100 or more but still show other USPS shipping methods. No product restraints. Thanks!

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

    Default Re: Free shipping plus options?

    Try customizing the file:
    /includes/modules/shipping/usps.php

    around line 566 with the code in RED:
    Code:
              if ($this->usps_countries == 'US' && MODULE_SHIPPING_USPS_FIRST_CLASS_FILTER_US == 'True' && preg_match('#First\-Class#i', $type) && $cnt_first > 1) continue;
    
    // bof: offer Free Media if total >= 100.00
    if ($_SESSION['cart']->total >= 100.00 && preg_match('#(Media Mail)#i', $type_rebuilt)) {
      $cost = 0.00;
    }
    // eof: offer Free Media if total >= 100.00
              $methods[] = array('id' => $type_rebuilt,
                                 'title' => $title,
                                 'cost' => $cost,
                                );
    see if that accomplishes what you are trying to do ...
    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!

  6. #16
    Join Date
    Jun 2009
    Posts
    275
    Plugin Contributions
    0

    Default Re: Free shipping plus options?

    Very nice! Thank you Ajeh! Coffee and donut coming your way

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

    Default Re: Free shipping plus options?

    Thanks for the update that this is working for you now ...

    And thanks for the coffee and donuts ... we were really in need of some today ...
    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!

  8. #18
    Join Date
    Jun 2009
    Posts
    275
    Plugin Contributions
    0

    Default Re: Free shipping plus options?

    Hi Ajeh, or anyone reading. Was wondering if I could get help getting this to work with the new USPS mod. I can't find where to put the code, or if the code will even work anymore. Thanks!

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

    Default Re: Free shipping plus options?

    I put it in the same place ...
    Code:
    $show_hiddenCost = '';
    // bof: offer Free Media if total >= 100.00
    if ($_SESSION['cart']->total >= 100.00 && preg_match('#(Media Mail)#i', $type_rebuilt)) {
      $cost = 0.00;
    }
    // eof: offer Free Media if total >= 100.00
              $methods[] = array('id' => $type_rebuilt,
                                 'title' => $title . $show_hiddenCost,
                                 'cost' => $cost,
                                );
    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!

  10. #20
    Join Date
    Jun 2009
    Posts
    275
    Plugin Contributions
    0

    Default Re: Free shipping plus options?

    Quote Originally Posted by Ajeh View Post
    I put it in the same place ...
    Code:
    $show_hiddenCost = '';
    // bof: offer Free Media if total >= 100.00
    if ($_SESSION['cart']->total >= 100.00 && preg_match('#(Media Mail)#i', $type_rebuilt)) {
      $cost = 0.00;
    }
    // eof: offer Free Media if total >= 100.00
              $methods[] = array('id' => $type_rebuilt,
                                 'title' => $title . $show_hiddenCost,
                                 'cost' => $cost,
                                );
    My bad, I'm not sure what I did last time, but I couldn't find where to put it. All set now. Thanks Ajeh!

 

 
Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. free shipping defualt plus courier shipping (flat rate)
    By snukos.eu in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 11 Mar 2010, 04:53 AM
  2. Free Shipping plus other options.
    By devgineer in forum Built-in Shipping and Payment Modules
    Replies: 6
    Last Post: 27 Sep 2009, 03:34 PM
  3. Free Shipping PLUS express options
    By spinnywoman in forum Built-in Shipping and Payment Modules
    Replies: 9
    Last Post: 3 Jul 2009, 05:48 AM
  4. Free shipping PLUS best way shipping = free shipping?
    By digidiva-kathy in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 9 Jul 2008, 06:30 AM

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