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!
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!
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
Excellent! Thank you so much. Worked like a charm.
I changed
toPHP Code:AND p2c.categories_id = c.categories_id ";
to exclude categories 9 and 10. I don't know if that was the "right" way to do it, but it worked.PHP Code:AND p2c.categories_id = c.categories_id
AND (c.categories_id < 9 OR c.categories_id > 10) ";
Thanks again!
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