Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2007
    Posts
    21
    Plugin Contributions
    0

    Default Excluding category from search

    Hi there,

    What is the best way to exclude all the products in a given category from the search results? I'm using Zencart 1.3.0.1

    Thanks!

  2. #2
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Excluding category from search

    http://www.zen-cart.com/forum/showthread.php?t=75079

    You can apply similar rule to your case.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  3. #3
    Join Date
    Mar 2007
    Posts
    21
    Plugin Contributions
    0

    Default Re: Excluding category from search

    Excellent! Thank you so much. Worked like a charm.

    I changed


    PHP Code:
                   AND p2c.categories_id c.categories_id "; 
    to


    PHP Code:
                   AND p2c.categories_id c.categories_id
                   
    AND (c.categories_id OR c.categories_id 10"; 
    to exclude categories 9 and 10. I don't know if that was the "right" way to do it, but it worked.

    Thanks again!

  4. #4
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Excluding category from search

    You can also try

    AND c.categories_id <> 9 AND c.categories_id <> 10

    samething
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

 

 

Similar Threads

  1. v151 Excluding a product type from search
    By DannyVarley in forum General Questions
    Replies: 3
    Last Post: 13 Jun 2013, 03:03 PM
  2. Excluding sold products from the search
    By Lisk in forum General Questions
    Replies: 9
    Last Post: 16 May 2011, 05:57 PM
  3. Excluding a Category from Group Pricing?
    By Amp in forum Customization from the Admin
    Replies: 4
    Last Post: 19 Sep 2009, 07:46 PM
  4. Excluding a category from the Categories sidebox
    By Heather88 in forum Basic Configuration
    Replies: 5
    Last Post: 23 Apr 2007, 09:48 PM
  5. Excluding 1 Category from New Products
    By libracorn in forum Setting Up Categories, Products, Attributes
    Replies: 19
    Last Post: 1 Oct 2006, 10:43 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