Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [bn23] different types of categories

Quote Reply
Re: [bn23] different types of categories In reply to
Hi,

You could try:

Countries:
<%loop category_loop%>
<%if CatType eq 'Country'%>
.. display the category
<%endif%>
<%endloop%>

Categories:
<%loop category_loop%>
<%if CatType eq 'Category%>
.. display the category
<%endif%>
<%endloop%>

to this will cause Links SQL to go through the list of categories twice. The first time it will print Country categories, the second time it will print the other categories. Of course you need to be able to tell what is a country and what is a normal one. One way I've suggested above is to add a new field CatType and set it to country/category.

Cheers,

Alex
--
Gossamer Threads Inc.
Subject Author Views Date
Thread different types of categories bn23 1987 May 28, 2003, 9:24 AM
Post Re: [bn23] different types of categories
webmaster33 1869 Jun 15, 2003, 7:45 AM
Post Re: [bn23] different types of categories
Alex 1855 Jun 16, 2003, 10:52 AM