Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2012
    Posts
    20
    Plugin Contributions
    0

    Default how to set a Max shipping fee?

    Hi
    I want to set a maximum shipping fee of £8.
    I have the individual items/weight to calculate the shipping costs and they add up just fine,
    But for example someone buy 10 items all costing £1 each to ship=£10

    I want it to stay at £8 as I would send by courier and they could order as much as they wanted and pay no more.

    For smaller orders (under £8 shipping no change)

    Many thanks

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

    Default Re: how to set a Max shipping fee?

    You could customize the Item Rate item shipping module with:
    Code:
          $this->quotes = array('id' => $this->code,
                                'module' => MODULE_SHIPPING_ITEM_TEXT_TITLE,
                                'methods' => array(array('id' => $this->code,
                                                         'title' => MODULE_SHIPPING_ITEM_TEXT_WAY,
                                                         'cost' => ((MODULE_SHIPPING_ITEM_COST * $item_total_count) > 8.00 ? 8.00 : (MODULE_SHIPPING_ITEM_COST * $item_total_count)) + MODULE_SHIPPING_ITEM_HANDLING )));
    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. #3
    Join Date
    Mar 2012
    Posts
    20
    Plugin Contributions
    0

    Default Re: how to set a Max shipping fee?

    Hi
    Many thanks for your reply,
    I think i explained it wrong, i am using perweightunit.

    Does this make a difference.

    Thanks

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

    Default Re: how to set a Max shipping fee?

    Then you could customize the code to work with Per Unit perweightunit shipping module ...
    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 ...

 

 

Similar Threads

  1. UK post code shipping zones or product specific flate rate shipping
    By evil turinp in forum Addon Shipping Modules
    Replies: 0
    Last Post: 4 Nov 2010, 07:29 PM
  2. Replies: 1
    Last Post: 6 Feb 2010, 06:15 PM
  3. Shipping Estimator: USPS shipping and mixed download/physical products
    By lat9 in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 23 Nov 2009, 03:04 PM
  4. Replies: 9
    Last Post: 13 Dec 2007, 04:45 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
  •