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

Re: [Alba] hiding empty categories

Quote Reply
Re: [Alba] hiding empty categories In reply to
Hi

In subcategory.html If I add this, does not work

The code in subcategory I have is:

Code:
<dt>
<a href="<%escape_html URL%>">
<%if RelationName%>
<%RelationName%>
<%else%>
<%Name%>
<%endif%>
<%if Related%>@<%endif%></a> (<%Number_of_Links%>)<%if Has_New_Links eq 'Yes'%>
<span class="new-item"><span>nuevo</span></span><%endif%>
<%if Has_Changed_Links eq 'Yes'%> <span class="updated-item"><span>actualizado</span></span><%endif%>
</dt>
<%if Description%><dd><%Description%></dd><%endif%>


And to make this work, I changed to:

Code:
<%if Number_of_Links '>' '0'%>

<dt>
<a href="<%escape_html URL%>">
<%if RelationName%>
<%RelationName%>
<%else%>
<%Name%>
<%endif%>
<%if Related%>@<%endif%></a> (<%Number_of_Links%>)<%if Has_New_Links eq 'Yes'%>
<span class="new-item"><span>nuevo</span></span><%endif%>
<%if Has_Changed_Links eq 'Yes'%> <span class="updated-item"><span>actualizado</span></span><%endif%>
</dt>
<%if Description%><dd><%Description%></dd><%endif%>

<%endif%>





In Reply To:
<%if Number_of_Links '>' '0'%>
<dt><a href="<%URL%>"><%Name%></a>. </dt>
<%endif%>

It won't stop the pages building but they won't be listed on the parent category pages.

Last edited by:

tenoch: Nov 21, 2006, 9:19 AM
Subject Author Views Date
Thread hiding empty categories The-o 14512 Aug 1, 2005, 12:52 AM
Thread Re: [The-o] hiding empty categories
Alba 14331 Aug 1, 2005, 1:23 AM
Thread Re: [Alba] hiding empty categories
The-o 14317 Aug 1, 2005, 2:42 AM
Thread Re: [The-o] hiding empty categories
Andy 14424 Aug 1, 2005, 4:01 AM
Post Re: [Andy] hiding empty categories
The-o 14322 Aug 1, 2005, 5:16 AM
Post Re: [Alba] hiding empty categories
pugdog 14253 Aug 2, 2005, 3:42 PM
Thread Re: [Alba] hiding empty categories
tenoch 13943 Nov 21, 2006, 9:18 AM
Post Re: [tenoch] hiding empty categories
Andy 13895 Dec 6, 2006, 5:57 PM
Thread Re: [The-o] hiding empty categories
rocco 14258 Aug 5, 2005, 8:31 PM
Post Re: [rocco] hiding empty categories
The-o 14262 Aug 6, 2005, 12:51 AM
Thread Re: [rocco] hiding empty categories
blacknight 14239 Aug 20, 2005, 2:46 AM
Thread Re: [blacknight] hiding empty categories
rocco 14255 Aug 20, 2005, 4:18 AM
Thread Re: [rocco] hiding empty categories
blacknight 14210 Aug 20, 2005, 4:34 AM
Thread Re: [blacknight] hiding empty categories
Dinky 14156 Sep 11, 2005, 8:38 PM
Thread Re: [Dinky] hiding empty categories
Dinky 14156 Sep 12, 2005, 1:55 AM
Thread Re: [Dinky] hiding empty categories
Dinky 14151 Sep 12, 2005, 2:48 AM
Post Re: [Dinky] hiding empty categories
Dinky 14140 Sep 12, 2005, 5:12 PM