Quote Originally Posted by disciple View Post
Hi,

Is it possible to place the new products, all products, etc. under the categories menu dropdown rather than the home dropdown?

I would also like to take out one of the categories, a document category, from that categories dropdown as well. I have already placed that category in another dropdown menu section but can't seem to figure out how to keep it from showing in the categories dropdown.

Thanks in advance for your help and such a great contribution.

Rick
I tried putting the new products, etc. under the categories when I was working on this add on, and had a heck of a time. Unfortunately, its beyond my capabilities at this time.

As for excluding a category, one way to do this is prevent a certain category from being included in the database query.

Open up includes/classes/categories_ul_generator.

Find this line:
Code:
where c.categories_id = cd.categories_id
then directly after it add:

Code:
and c.categories_id !=15
replace 15 with the cPath number of the category you want to hide. (to find the number, click on the document category link, and look in the url for the cPath= section. Use that number. Unfortunately its a manual thing, but it works!