Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 60
  1. #21
    Join Date
    Mar 2009
    Posts
    36
    Plugin Contributions
    0

    Default Re: Minimum shipping fee

    *** duplicate post deleted *** Please do not post in more than one thread.
    Last edited by Kim; 29 Mar 2009 at 06:02 PM.

  2. #22
    Join Date
    Dec 2007
    Posts
    38
    Plugin Contributions
    0

    Default Re: Minimum shipping fee

    Just curious... does the handling fee show a separate charge from the shipping charge during checkout so the customer can differentiate between the two?

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

    Default Re: Minimum shipping fee

    No they are combined together ...
    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
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Minimum shipping fee

    Quote Originally Posted by Ajeh View Post
    umm ... well ... I'd search for the word:
    cost
    I did as you said and broke the USPS module. The module would not appear unless I undid everything.

    How should it have been written?

    This breaks it:

    if ($cost < 6.00) {
    $methods[] = array('id' => $type,
    'title' => $title,
    'cost' => (6.00 + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
    } else {
    $methods[] = array('id' => $type,
    'title' => $this->types[$type],
    'cost' => ($cost + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
    }
    Cheers!
    v2.0+

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

    Default Re: Minimum shipping fee

    Probably a misplaced bracket ...

    The original code reads:
    Code:
              $methods[] = array('id' => $type,
                                 'title' => $title,
                                 'cost' => ($cost + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
            }
    
            $this->quotes['methods'] = $methods;
    The code should read when changed:
    Code:
              if ($cost < 6.00) {
              $methods[] = array('id' => $type,
                                 'title' => $title,
                                 'cost' => (6.00 + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
              } else {
              $methods[] = array('id' => $type,
                                 'title' => $title,
                                 'cost' => ($cost + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
              }
            }
    
            $this->quotes['methods'] = $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!

  6. #26
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Minimum shipping fee

    It's a beautiful thing!

    Perhaps you'd like to create a new contribution to include all of these minimum shipping prices?
    Cheers!
    v2.0+

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

    Default Re: Minimum shipping fee

    Glad you have this working now ...

    Get enough examples and who needs an add-on?
    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!

  8. #28
    Join Date
    Jul 2009
    Posts
    1
    Plugin Contributions
    0

    customer issue Re: Minimum shipping fee

    Hi, im new to all this and was wondering if I could do a per item rate with a minimum shipping fee? thanks!

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

    Default Re: Minimum shipping fee

    I want a Minimum of $9.00 shipping fee ... but just $1.50 per Item after that ...

    I set the Item Rate item charges as:
    Handling: 7.50
    Per Item: 1.50

    Now I get $9.00 plus $1.50 per additional item ...
    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!

  10. #30
    Join Date
    Nov 2007
    Location
    USA
    Posts
    874
    Plugin Contributions
    5

    Default Re: Minimum shipping fee

    Quote Originally Posted by Ajeh View Post
    Probably a misplaced bracket ...

    The original code reads:
    Code:
              $methods[] = array('id' => $type,
                                 'title' => $title,
                                 'cost' => ($cost + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
            }
    
            $this->quotes['methods'] = $methods;
    The code should read when changed:
    Code:
              if ($cost < 6.00) {
              $methods[] = array('id' => $type,
                                 'title' => $title,
                                 'cost' => (6.00 + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
              } else {
              $methods[] = array('id' => $type,
                                 'title' => $title,
                                 'cost' => ($cost + MODULE_SHIPPING_USPS_HANDLING) * $shipping_num_boxes);
              }
            }
    
            $this->quotes['methods'] = $methods;
    Thanks for your new USPS update. How should this look now?
    Cheers!
    v2.0+

 

 
Page 3 of 6 FirstFirst 12345 ... 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