Page 3 of 3 FirstFirst 123
Results 21 to 27 of 27
  1. #21
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Free shipping PLUS walkin....

    Quote Originally Posted by Ajeh View Post
    All other shipping modules should be removed by clicking on them and clicking REMOVE so that they are not installed ...
    You need your Order Total modules for your shop ...

    At a minimum you should have installed:
    Shipping ot_shipping
    Sub-Total ot_subtotal
    Tax ot_tax
    Total ot_total
    Last edited by Ajeh; 22 Apr 2012 at 07:26 PM.
    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. #22
    Join Date
    Oct 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Free shipping PLUS walkin....

    ok I did that...still only Pickup available on all orders.
    Shall I send you the URl so that you can see please?

    oh btw..I do not have any zones or tax classes setup as the item prices are entered including tax....could that be the reason??

    Thanks
    Last edited by chunkyman; 22 Apr 2012 at 07:37 PM.

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

    Default Re: Free shipping PLUS walkin....

    You may send me a PM and when I have time I will try to look at your site and the settings and see what is happening here ...
    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. #24
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Free shipping PLUS walkin....

    Your settings were correct except for one ...

    In the Configuration ... Shipping/Packaging ... you have 0 weight set to mean Free Shipping ... this is not what you want ... so, this needed to be changed:
    Order Free Shipping 0 Weight Status
    If there is no weight to the order, does the order have Free Shipping?
    0= no
    1= yes

    Note: When using Free Shipping, Enable the Free Shipping Module this will only show when shipping is free.
    See if it doesn't work better 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: 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. #25
    Join Date
    Oct 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Free shipping PLUS walkin....

    Hang on..let me just pull my foot out!!!
    You are great!!! Was that it?
    Geez....got to learn more about Zen heheh
    Thanks again Linda..works perfectly now!!

    May I ask you a couple of other questions which for you might be as dumb as my last problem

    1) I was reading your reply to this:
    http://www.zen-cart.com/showthread.p...ted-by-default
    You listed the file that would need changing for what this person is trying to achieve, I would like to do that to.
    Can you tell me how to change this file to achieve this please? (also make the Walkin show as DEFAULT)

    you said you have to edit this file: /includes/classes/shipping.php

    Code:
    $cheapest = false;
    $size = sizeof($rates);
    for ($i=0; $i<$size; $i++) {
    if (is_array($cheapest)) {
    // never quote storepickup as lowest - needs to be configured in shipping module
    if ($rates[$i]['cost'] < $cheapest['cost'] and $rates[$i]['module'] != 'storepickup') {
    $cheapest = $rates[$i];
    }
    } else {
    if ($rates[$i]['module'] != 'storepickup') {
    $cheapest = $rates[$i];
    }
    }
    }

    2) I have managed to replace the word "Shipping" from everywhere (I think) but i cannot find this anywhere. I even tried Firebug in Firefox but no luck.

    I also tried to search using the deveopers kit in admin but didnt find it, any idea where this one (below) is please?

    Name:  Untitled.jpg
Views: 78
Size:  32.4 KB

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

    Default Re: Free shipping PLUS walkin....

    Set the Sort Order on the Shipping Modules so that the Store Pickup storepickup is 10 and Free Shipping Options freeoptions is 20 ...

    Then edit the code in the:
    /includes/classes/shipping.php
    Code:
          for ($i=0; $i<$size; $i++) {
            if (is_array($cheapest)) {
              // never quote storepickup as lowest - needs to be configured in shipping module
    //          if ($rates[$i]['cost'] < $cheapest['cost'] and $rates[$i]['module'] != 'storepickup') {
              if ($rates[$i]['cost'] < $cheapest['cost']) {
    
                $cheapest = $rates[$i];
              }
            } else {
    //          if ($rates[$i]['module'] != 'storepickup') {
              if (true) {
                $cheapest = $rates[$i];
              }
            }
          }
    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. #27
    Join Date
    Oct 2008
    Posts
    22
    Plugin Contributions
    0

    Default Re: Free shipping PLUS walkin....

    Hi Linda,

    thank you again for your time..it works perfectly now!

    I will try to post my second question in the main forum cause I think I have taken enough of your time!

    Thanks again!

 

 
Page 3 of 3 FirstFirst 123

Similar Threads

  1. v151 Free shipping plus options?
    By doooomed in forum Built-in Shipping and Payment Modules
    Replies: 20
    Last Post: 16 Sep 2014, 06:20 PM
  2. v151 Changing free shipping from 100:0 to 125:0 still gives free ship for $100.00 plus ord
    By marvin in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 1 Jul 2013, 03:14 PM
  3. WalkIn vs Delivery (free) WalkIn selected by default
    By liderbug in forum General Questions
    Replies: 1
    Last Post: 30 Mar 2011, 03:12 PM
  4. 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
  5. 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

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