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

Re: [Andy] Category Loop on a Category Page

Quote Reply
Re: [Andy] Category Loop on a Category Page In reply to
Andy,
Categories are not in scope of category.html.
Therefore, I can not do as it returns nothing:
Code:
<%loop category_loop%>
<%if Name eq 'foo'%>
<li><a href="<%escape_html URL%>"><span><b>foo</b></span></a></li>
<%endif%>
<%endloop%>
With your help I was able to add the following Template Global Subroutine :

Code:
sub {
my $category_loop = $_[0];
my @new_categories;
foreach (@$category_loop) {
$_->{ID}, $_->{Full_Name}, $_->{Description}
}

return { category_loop => \@new_categories };
}
Then, I called it using the following:
Code:
<%tweak_category_loop($category_loop)%>
<%if Name eq 'foo'%>
<li><a href="<%escape_html URL%>"><span><b>foo</b></span></a></li>
<%endif%>
<%endloop%>
When I did the above, the bullet item was returned fine. However, next to it, there was an error printed as in "Error: endloop found outside of loop"
Then, you said that the call is wrong and the correct one should be:
Code:
<%tweak_category_loop($category_loop)%>
<%loop category_loop%>
<%if Name eq 'foo'%>
<li><a href="<%escape_html URL%>"><span><b>foo</b></span></a></li>
<%endif%>
<%endloop%>
When I did this, I the bullet item was not displayed and still got the same error: "Error: endloop found outside of loop"


Thank you for your patience and appreciate your help.
Subject Author Views Date
Thread; hot thread Category Loop on a Category Page halamalak 15521 Sep 5, 2011, 5:10 PM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15193 Sep 6, 2011, 12:00 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15183 Sep 6, 2011, 6:52 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15191 Sep 6, 2011, 6:55 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15135 Sep 6, 2011, 6:58 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15176 Sep 6, 2011, 6:59 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15133 Sep 6, 2011, 7:25 AM
Post; hot thread Re: [halamalak] Category Loop on a Category Page
halamalak 15118 Sep 6, 2011, 7:35 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15121 Sep 6, 2011, 8:11 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15110 Sep 6, 2011, 10:00 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15165 Sep 6, 2011, 10:03 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15130 Sep 6, 2011, 10:07 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15165 Sep 6, 2011, 10:09 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15091 Sep 6, 2011, 10:23 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15162 Sep 6, 2011, 10:26 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15146 Sep 6, 2011, 10:37 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15122 Sep 6, 2011, 10:41 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15188 Sep 6, 2011, 10:55 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15129 Sep 6, 2011, 10:56 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15146 Sep 6, 2011, 11:10 AM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15187 Sep 6, 2011, 11:40 AM
Thread; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15098 Sep 6, 2011, 1:50 PM
Thread; hot thread Re: [halamalak] Category Loop on a Category Page
Andy 15062 Sep 6, 2011, 11:53 PM
Post; hot thread Re: [Andy] Category Loop on a Category Page
halamalak 15095 Sep 7, 2011, 6:03 AM