Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default how to prevent disc couon from applying items on special?

    hi all,

    how do you set the restriction on discount coupons to prevent a disc from applying to items that are on special?

    thanks.

  2. #2
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: how to prevent disc couon from applying items on special

    found in another thread - thanks to tj1 and ajeh

    Add the following code just before the line that reads
    // modified to manage restrictions better - leave commented for now
    PHP Code:
    //check for specials
    $specials_query = "SELECT * FROM " . TABLE_SPECIALS . "
    WHERE products_id = '"
    . (int)$product_id . "'";

    $specials = $db->Execute($specials_query);

    if (
    $specials->fields['status'] == 1) {
    return
    false;
    }
    //end specials check



 

 

Similar Threads

  1. v138a Stamps.com: How do I prevent Non-shippable items from batch importing?
    By gachogavacho in forum Addon Shipping Modules
    Replies: 14
    Last Post: 20 Aug 2014, 08:07 AM
  2. Can I prevent discount codes from being used on Special items that are on sale?
    By 4130 in forum Discounts/Coupons, Gift Certificates, Newsletters, Ads
    Replies: 1
    Last Post: 13 Jun 2013, 10:28 PM
  3. Stop Special Offer Price From Applying to Attributes As Well?
    By gaffettape in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 1 Aug 2010, 12:09 PM
  4. Special Shipping for special items. how?
    By Nima in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 18 Aug 2009, 07:48 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