Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [VishalT] Display Parent Category (Father Category) name in Child Category & on detailed page?

Quote Reply
Re: [VishalT] Display Parent Category (Father Category) name in Child Category & on detailed page? In reply to
Hey Andy,

I tried using one of your Globals:


Code:
sub {
my $FatherID = shift;
my $sth = $DB->table('Category')->select( { ID => $FatherID } ) || return $GT::SQL::error;
my $Father;
while (my $hit = $sth->fetchrow_hashref) {
$Father = $hit->{ID};
}
$Father ? return $Father : return "Couldnt find a match for ID : $FatherID";
}


However when I call it : <%Fathername_by_id($FatherID)%>

It outputs Father ID # & not the name :( ..

Please help..

--------------------------------
global post @ https://www.gossamer-threads.com/...r%20category#p286345

Vishal
-------------------------------------------------------
Subject Author Views Date
Thread Display Parent Category (Father Category) name in Child Category & on detailed page? VishalT 3944 Nov 26, 2019, 1:03 AM
Thread Re: [VishalT] Display Parent Category (Father Category) name in Child Category & on detailed page?
VishalT 3885 Nov 26, 2019, 4:34 AM
Thread Re: [VishalT] Display Parent Category (Father Category) name in Child Category & on detailed page?
Andy 3883 Nov 27, 2019, 1:59 AM
Thread Re: [Andy] Display Parent Category (Father Category) name in Child Category & on detailed page?
VishalT 3885 Nov 27, 2019, 9:36 AM
Thread Re: [VishalT] Display Parent Category (Father Category) name in Child Category & on detailed page?
Andy 3870 Nov 27, 2019, 9:43 AM
Post Re: [Andy] Display Parent Category (Father Category) name in Child Category & on detailed page?
VishalT 3850 Nov 27, 2019, 9:49 AM
Thread Re: [Andy] Display Parent Category (Father Category) name in Child Category & on detailed page?
VishalT 3867 Nov 27, 2019, 9:51 AM
Thread Re: [VishalT] Display Parent Category (Father Category) name in Child Category & on detailed page?
Andy 3855 Nov 27, 2019, 9:57 AM
Post Re: [Andy] Display Parent Category (Father Category) name in Child Category & on detailed page?
VishalT 3835 Nov 27, 2019, 10:05 AM