Page 2 of 2 FirstFirst 12
Results 11 to 16 of 16
  1. #11
    Join Date
    Aug 2008
    Posts
    258
    Plugin Contributions
    0

    Default Re: 2 Shipping Methods at the same time

    Yes, I do know about the master category id, is it ok if it is #3

    I will treat the shipping of the other items the same as the candles, flat rate per item.

    The thing I am lost on is how to work the flowers in, since the shipping on those will be defined by a zone instead of per item. does this answer your ??

    thank you

  2. #12
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,677
    Plugin Contributions
    6

    Default Re: 2 Shipping Methods at the same time

    The idea is to make a check on the Item count of the other Products that are NOT Flowers ...

    You could check the counts on the Items in the Shopping Cart with something similar to:
    global $cart;
    $chk_candles_deluxe = $_SESSION['cart']->in_cart_check('master_categories_id','5');
    $chk_candles_large = $_SESSION['cart']->in_cart_check('master_categories_id','6');
    $chk_candles_standard = $_SESSION['cart']->in_cart_check('master_categories_id','7');

    $chk_flowers = $_SESSION['cart']->in_cart_check('master_categories_id','2');

    etc. etc. etc.

    From those numbers you can do several kinds of calculations ...

    Depending on how you do the shipping on the Flowers, the shipping cost can be adjusted based on the counts for the various Categories ...

    If all of the Categories will have their own shipping cost based on the Item Count, then those can be factored in to the calculations ...

    You really need more information on what you are doing with the Flowers and then look at the individual Categories of Products to see how you want their cost to be managed ...

    It comes down to writing the correct calculations based on the content of the shopping cart and how each kind of Product should be treated ...
    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.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

  3. #13
    Join Date
    Aug 2008
    Posts
    258
    Plugin Contributions
    0

    Default Re: 2 Shipping Methods at the same time

    Ah, thanks.

    That looks complicated.

    So there isn't an easy way to make zen cart add two types of shipping together than?

    Ideally I would need the flowers to be shipped and priced via the zone method and would need everything else to be priced at $5 per item for shipping.

    What php file would I be editing?

    thanks

  4. #14
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    64,677
    Plugin Contributions
    6

    Default Re: 2 Shipping Methods at the same time

    If using the Zone Rate zones shipping module, then you would customize the:
    /includes/modules/shipping/zones.php

    You calculate the rates for the other products in the cart and then add it to the $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.1]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...

  5. #15
    Join Date
    Aug 2008
    Posts
    258
    Plugin Contributions
    0

    Default Re: 2 Shipping Methods at the same time

    Alright, I have the logic figured out now.

    I am going to use a module I found in the forum. Zipcode Rates. It allows me to specify the rates based on a zip code.

    If is the customers zipcode is one of the possible 20 that the client gave me there shipping fee will be a flat rate....Reason is because all the shipping rate really covers is the gas for the delivery driver (depending on the zip code, ex $5 for one $9 for another (client wont' drive more than 20 miles). In this case we can deliver anything for the flat amount.....it doesn't matter if they get 10 candles and a bouquet of flowers because the delivery driver can bring it with him.

    So----that is figured out.

    I will setup a per unit shipping module and set it at $5 per item. BUT then I need to be able to count the number of flowers and if there is 1 or more I need to add $15 to the shipping rate. (flowers is a flat $15, no matter how many they get). It would be great if I could specify that amount under or next to the other shipping total, just to break it down to the client (not necessary though).


    If I could accomplish this I think it would work....only downside is that everyone in the state that the original zip codes are in will have two shipping options (one of them could be way to cheap).

    does this sound correct?

    thank you

  6. #16
    Join Date
    Aug 2008
    Posts
    258
    Plugin Contributions
    0

    Default Re: 2 Shipping Methods at the same time

    Help Please, just need to figure out how to do the above?

    thank you

 

 
Page 2 of 2 FirstFirst 12

Similar Threads

  1. hide other shipping methods with free shipping
    By thenax in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 10 Nov 2009, 09:46 PM
  2. Selecting Shipping Methods with free shipping
    By pasi in forum Built-in Shipping and Payment Modules
    Replies: 15
    Last Post: 15 Apr 2007, 05:28 PM
  3. Shipping Estimator Sort Shipping Methods
    By sitehatchery in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 15 Apr 2007, 05:34 AM
  4. List shipping methods automatically on Shipping and Return Page
    By gems14k in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 16 Jul 2006, 12:00 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
  •