Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2007
    Posts
    513
    Plugin Contributions
    2

    Default Low Order Fee for Group Discount members only

    I was wondering if it is at all possible to only enable Low Order Fee for members of a Group Discount

    e.g.
    PHP Code:
    // Check if Group Discount member
    if (IS_ADMIN_FLAG == false && $_SESSION['cart']->Group Discount member() !no) { 
      
    $this->enabled false
    } else { 
      
    $this->enabled true


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

    Default Re: Low Order Fee for Group Discount members only

    Let's say the customer has to be part of customers_group_pricing 3 ...

    You can customize the file:
    /includes/modules/order_total/ot_loworderfee.php

    Code:
    // only show if customer is a member of customers_group_pricing 3
          global $db;
          $chk_group = $db->Execute("select customers_group_pricing from " . TABLE_CUSTOMERS . " where customers_id = '" . (int)$_SESSION['customer_id'] . "'"); 
    
          if ($chk_group->fields['customers_group_pricing'] == 3 && MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE == 'true') {
            switch (MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION) {
    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!

 

 

Similar Threads

  1. Apply Low Order Fee for only the difference missing
    By dimsumgurl in forum Managing Customers and Orders
    Replies: 2
    Last Post: 3 Sep 2010, 04:54 AM
  2. Eliminating low-order fee for certain products
    By bblinn in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 6
    Last Post: 14 Nov 2008, 02:42 PM
  3. Low order fee on Discount groups only
    By shanghai in forum General Questions
    Replies: 0
    Last Post: 11 May 2008, 04:07 PM
  4. PLEASE Help! group discount members accessing special prices only
    By louie in forum Managing Customers and Orders
    Replies: 0
    Last Post: 6 Sep 2007, 09:07 AM

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