Results 1 to 3 of 3

Hybrid View

  1. #1
    Join Date
    Oct 2009
    Posts
    44
    Plugin Contributions
    0

    Default Anyone use Minimum Order Mod? Questions here...

    Hello

    Has anyone installed the Minimum Order mod from Andrew Berezin? I have a question...

    Can you specify order minimums for payment types? I want to place a minimum order amount of $2.00 if you pay with Paypal and $5.00 if you pay with a credit card. Right now, I have a $1.00 low order fee included so it only works if someone is trying to buy a $1 product (I sell digital downloads). So....I just installed authorize.net on my site to accept credit cards instantly and customers can get their downloads instantly. But I can't set a minimum purchase (that I know of) for the credit card payments. I have the policy typed everywhere throughout the checkout process - BUT as usual people don't read and blast through checkouts. I just had another $2 order for a credit card payment. I will get about a quarter of that in profit! augh...

    So, if you have installed the minimum order mod - let me know if you can set up specific amounts/specifications.

    Now if you can't - does anyone know how or what mod I can use?

    thanks for your help!

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

    Default Re: Anyone use Minimum Order Mod? Questions here...

    You could customize the individual Payment Module by checking for how much is in the Order ... example, for PayPal Standard you could use:
    Code:
        $this->enabled = ((MODULE_PAYMENT_PAYPAL_STATUS == 'True') ? true : false);
    
    // bof: disable payment module when order is less than 2.00
    global $order;
    if ($order->info['subtotal'] < 2.00) {
    //  echo 'Do not show PayPal! ' . $order->info['subtotal'];
      $this->enabled = false;
    } else {
    //echo 'Do show PayPal! ' . $order->info['subtotal'];
    }
    // eof: disable payment module when order is less than 2.00
    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!]
    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!

  3. #3
    Join Date
    May 2011
    Posts
    13
    Plugin Contributions
    0

    Default Re: Anyone use Minimum Order Mod? Questions here...

    I am using ZenCart 1.3.9h and Minimum Order v1.2. I set it up no problem and it works fine except for when they click the paypal button. It will still allow them to checkout and bypass the minimum order. Which file do I mod to disable the paypal checkout until they meet the minimum order?

    Thanks

 

 

Similar Threads

  1. Replies: 8
    Last Post: 10 Apr 2012, 12:45 PM
  2. Anyone here use osTicket?
    By data_digger in forum General Questions
    Replies: 5
    Last Post: 19 Sep 2009, 01:35 AM
  3. Does anyone here happen to use siteground hosting?
    By lapowerlifter242 in forum Templates, Stylesheets, Page Layout
    Replies: 2
    Last Post: 30 Oct 2007, 02:58 AM
  4. How to edit text for minimum order mod?
    By highroller in forum Managing Customers and Orders
    Replies: 4
    Last Post: 20 May 2007, 02:51 AM
  5. My day for stupid questions. Minimum order totals?
    By Ripper in forum General Questions
    Replies: 2
    Last Post: 3 Nov 2006, 08:31 PM

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