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

Re: [VishalT] How to list/display of Sub Categories for any Detail Page.

Quote Reply
Re: [VishalT] How to list/display of Sub Categories for any Detail Page. In reply to
Ooops, try:

Code:
sub {
# first work out the category this link is in. If its in multiple cats, we just grab the first one
my $cat_id = $DB->table("CatLinks")->do_query(qq|SELECT CategoryID FROM glinks_CatLinks WHERE LinkID = $_[0]|)->fetchrow || '';
if ($cat_id > 0) {
my $father_id = $DB->table("Category")->select( ['FatherID'], { ID => $cat_id } )->fetchrow || '';
my $sth = $DB->table("Category")->select( { FatherID => $father_id } ) || die $GT::SQL::error;

my @cats;
while (my $cat = $sth->fetchrow_hashref) {

$cat->{URL} = $CFG->{build_root_url} . "/" . $DB->table('Category')->as_url( $cat->{Full_Name} ) . "/" . $CFG->{build_index};

push @cats, $cat;
}

return { parent_cat_loop => \@cats };
}


}

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!

Last edited by:

Andy: Jan 8, 2020, 12:04 AM
Subject Author Views Date
Thread How to list/display of Sub Categories for any Detail Page. VishalT 7618 Jan 7, 2020, 10:34 PM
Thread Re: [VishalT] How to list/display of Sub Categories for any Detail Page.
Andy 7467 Jan 7, 2020, 11:42 PM
Thread Re: [Andy] How to list/display of Sub Categories for any Detail Page.
VishalT 7465 Jan 7, 2020, 11:50 PM
Thread Re: [VishalT] How to list/display of Sub Categories for any Detail Page.
Andy 7467 Jan 7, 2020, 11:51 PM
Thread Re: [Andy] How to list/display of Sub Categories for any Detail Page.
VishalT 7456 Jan 8, 2020, 12:03 AM
Thread Re: [VishalT] How to list/display of Sub Categories for any Detail Page.
Andy 7464 Jan 8, 2020, 12:05 AM
Post Re: [Andy] How to list/display of Sub Categories for any Detail Page.
VishalT 7442 Jan 8, 2020, 12:22 AM
Thread Re: [Andy] How to list/display of Sub Categories for any Detail Page.
VishalT 6365 Oct 31, 2020, 2:55 PM
Thread Re: [VishalT] How to list/display of Sub Categories for any Detail Page.
Andy 6364 Nov 1, 2020, 12:01 AM
Thread Re: [Andy] How to list/display of Sub Categories for any Detail Page.
VishalT 6359 Nov 1, 2020, 10:41 AM
Thread Re: [VishalT] How to list/display of Sub Categories for any Detail Page.
Andy 6348 Nov 1, 2020, 10:28 PM
Post Re: [Andy] How to list/display of Sub Categories for any Detail Page.
VishalT 6305 Nov 2, 2020, 1:22 PM