Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [socrates] Search only this (parent) category but also show links/results from all subcategories

Quote Reply
Re: [socrates] Search only this (parent) category but also show links/results from all subcategories In reply to
Hi,

If you don't mind editing the code, you could open up /admin/Links/User/Search.pm, and find:

Code:
@children = grep !$seen{$_}++, @children;

Then add this below it:

Code:
if ($IN->param('catid-only')) {
@children = $IN->param('catid-only');
}

Now when calling search.cgi, if you ONLY want to search the specific category, pass in catid-only=1234 , and it should ONLY search the category 1234, while ignoring any sub-cats.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Subject Author Views Date
Thread Search only this (parent) category but also show links/results from all subcategories socrates 6371 Oct 20, 2017, 8:48 PM
Thread Re: [socrates] Search only this (parent) category but also show links/results from all subcategories
Andy 6249 Oct 20, 2017, 10:32 PM
Thread Re: [Andy] Search only this (parent) category but also show links/results from all subcategories
socrates 6246 Oct 20, 2017, 11:04 PM
Thread Re: [socrates] Search only this (parent) category but also show links/results from all subcategories
Andy 6244 Oct 20, 2017, 11:10 PM
Thread Re: [Andy] Search only this (parent) category but also show links/results from all subcategories
socrates 6244 Oct 20, 2017, 11:51 PM
Thread Re: [socrates] Search only this (parent) category but also show links/results from all subcategories
Andy 6241 Oct 21, 2017, 12:04 AM
Thread Re: [Andy] Search only this (parent) category but also show links/results from all subcategories
socrates 6233 Oct 21, 2017, 12:17 AM
Post Re: [socrates] Search only this (parent) category but also show links/results from all subcategories
Andy 6214 Oct 21, 2017, 12:20 AM