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,

I'm not sure why you are not seeing the results you want. That sounds like how it works as default:

Code:
my @cat_ids = $IN->param('catid') or return $results;
my (@children, %seen);
foreach my $id (@cat_ids) {
next if ($id !~ /^\d+$/);
my $child = $cat_db->children($id) or next;
push @children, @$child, $id;
}

This bit:

Code:
my $child = $cat_db->children($id) or next;

Will get all the sub-categories, and then add those ID's into the list of ID's to search for. Are you sure its not working right?

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 6250 Oct 20, 2017, 10:32 PM
Thread Re: [Andy] Search only this (parent) category but also show links/results from all subcategories
socrates 6247 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 6242 Oct 21, 2017, 12:04 AM
Thread Re: [Andy] Search only this (parent) category but also show links/results from all subcategories
socrates 6234 Oct 21, 2017, 12:17 AM
Post Re: [socrates] Search only this (parent) category but also show links/results from all subcategories
Andy 6215 Oct 21, 2017, 12:20 AM