Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 60
  1. #11
    Join Date
    Sep 2008
    Posts
    95
    Plugin Contributions
    0

    Default Re: Minimum shipping fee

    Can you modify and say how it can be done. Like suppose we give 5lbs as box max weight then is it possible to workout minimum fee on per box basis.

    And I would like to know is my 2nd question possible to do, if so then how.

    ~ Time

  2. #12
    Join Date
    Feb 2009
    Location
    england
    Posts
    8
    Plugin Contributions
    0

    Default Re: Minimum shipping fee

    I'm not sure if I'm asking the question in the right part of the forum, but here goes anyway. This is my first time using Zen Cart, I am also new to PHP. The shop I am working on sells bottled beer online. We only sell in multioples of 12 bottles (ie delivery of full cases only) though they can be a mixture of 12 different products, or 12 of the same. This will be made clear throughout the site.

    We have 3 needs for shipping:

    1. Free delivery within two counties in the UK (about a 60-80 miles radius of our base) for one case or more.
    2. Courier delivery within the rest of Engalnd at £6.50 per case of 12
    3. Courier delivery to Scotland and Wales and Ireland at a cost of £9 per case of 12.

    I know I can set a delivery price of £0.50 per item and have it add up to £6 per case of 12 for delivery, but how do I make it so the customer tells us at checkout which of the three options they have chosen and how do I get the shipping costs calculated? and how can I set those options up??

    I am afraid I am struggling to under stand how the shipping module works

    Any help greatly appreciated.

    Thanks

  3. #13
    Join Date
    Nov 2008
    Posts
    60
    Plugin Contributions
    0

    Default Re: Minimum shipping fee

    Quote Originally Posted by colin4255 View Post
    I'm not sure if I'm asking the question in the right part of the forum, but here goes anyway. This is my first time using Zen Cart, I am also new to PHP. The shop I am working on sells bottled beer online. We only sell in multioples of 12 bottles (ie delivery of full cases only) though they can be a mixture of 12 different products, or 12 of the same. This will be made clear throughout the site.

    We have 3 needs for shipping:

    1. Free delivery within two counties in the UK (about a 60-80 miles radius of our base) for one case or more.
    2. Courier delivery within the rest of Engalnd at £6.50 per case of 12
    3. Courier delivery to Scotland and Wales and Ireland at a cost of £9 per case of 12.

    I know I can set a delivery price of £0.50 per item and have it add up to £6 per case of 12 for delivery, but how do I make it so the customer tells us at checkout which of the three options they have chosen and how do I get the shipping costs calculated? and how can I set those options up??

    I am afraid I am struggling to under stand how the shipping module works

    Any help greatly appreciated.

    Thanks
    I'd recommend that you start a new thread with this question since it doesn't have anything to do with setting up a minimum shipping fee. You'd put it in the Shipping and Payment Modules Forum, the same forum that this topic is in.

    Regarding your question about how the customer tells you which shipping method they want, all the available shipping options will be displayed on the first checkout page. They mark which one they want.

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

    Default Re: Minimum shipping fee

    For example one of my cart deal in pets and it have pets accessories as well as live pets. Pet accessories can be shipped with standard shipping charges but live pets need special packing so will cost extra.
    What is "standard" shipping and what does "Live Pet" shipping 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: 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. #15
    Join Date
    Sep 2008
    Posts
    95
    Plugin Contributions
    0

    Default Re: Minimum shipping fee

    Hi Ajeh,

    Normal shipping cost on my site is 1 Euro and live pets shipping is 2.5 Euro per box of upto 24 lbs.

    ~ Time

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

    Default Re: Minimum shipping fee

    I order the following, how much would you be charging for shipping:

    Order 1
    1 pet toy

    Order 2
    1 pet at 4lbs

    Order 3
    3 pet toys

    Order 4
    3 pets at 4lbs each

    Order 5
    1 pet at 25lbs

    Also, is there something that "marks" or distinguishes Pets from Accessories in the products table that can be testing 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!

  7. #17
    Join Date
    Nov 2007
    Location
    USA
    Posts
    882
    Plugin Contributions
    5

    Default Re: Minimum shipping fee

    Quote Originally Posted by Ajeh View Post
    Customize the code from:
    Code:
            $methods[] = array('id' => $type,
                               'title' => $this->types[$type],
                               'cost' => ($cost + MODULE_SHIPPING_UPS_HANDLING) * $shipping_num_boxes);
    to now force the amount ...
    Code:
    if ($cost < 7.95) {
            $methods[] = array('id' => $type,
                               'title' => $this->types[$type],
                               'cost' => (7.95 + MODULE_SHIPPING_UPS_HANDLING) * $shipping_num_boxes);
    } else {
            $methods[] = array('id' => $type,
                               'title' => $this->types[$type],
                               'cost' => ($cost + MODULE_SHIPPING_UPS_HANDLING) * $shipping_num_boxes);
    }

    Very Nice. How can this be done with USPS? It is a pain in the back to ship First Class. Their website is unreliable and I just want to ship Fedex but, some things are easily sent in a small envelope. I'd like a minimum USPS amount of $4.00.

    Thanks.
    Cheers!
    v2.0+

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

    Default Re: Minimum shipping fee

    umm ... well ... I'd search for the word:
    cost

    in the file and find:
    Code:
              $methods[] = array('id' => $type,
                                 'title' => $title,
                                 'cost' => ($cost + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
    Then do the same things where you test the value of $cost and if < 4.00 you make it 4.00 ...

    The difference is the code where the constants used UPS in what I showed and you are looking for constants that use USPS ...
    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. #19
    Join Date
    Dec 2007
    Posts
    38
    Plugin Contributions
    0

    Default Re: Minimum shipping fee

    Does that alteration in shipping fees show on the checkout page for the customer?

    For example: the user gets the shipping rate based on zip code through the USPS module, then I alter the code to add a standard handling fee to all orders. Essentially, the user would see the rate change from USPS quote to final checkout without knowing what happened inbetween to increase the total price. Does that make sense? I've never used the USPS module before, so is there a separate area for adding handling fees?

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

    Default Re: Minimum shipping fee

    If you want a universal Handling Charge on the shipping module, go to the Modules ... Shipping ... and edit the module and add your Handling Fee and it will be applied to all methods ...
    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!

 

 
Page 2 of 6 FirstFirst 1234 ... LastLast

Similar Threads

  1. Minimum Order Fee module
    By jdw1979 in forum General Questions
    Replies: 13
    Last Post: 30 Nov 2011, 04:44 PM
  2. Minimum FIRST TIME order fee
    By jdw1979 in forum General Questions
    Replies: 20
    Last Post: 2 Nov 2011, 05:37 PM
  3. Minimum Order Fee
    By prosam in forum Managing Customers and Orders
    Replies: 5
    Last Post: 17 Jun 2008, 04:35 PM
  4. Set minimum shipping fee
    By mattys in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 5 Jan 2007, 11:03 AM
  5. Added charge, one-time deposit/fee, minimum order
    By Pozitech in forum Managing Customers and Orders
    Replies: 2
    Last Post: 7 Nov 2006, 03:40 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