Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Number of links after category

Quote Reply
Number of links after category
Hello,

Links 2.0 puts a number after the category. Is it possible to have this feature on for some categories, but off for others.

------------------
James L. Murray
VirtueTech, Inc.
www.virtuetech.com
Quote Reply
Re: Number of links after category In reply to
One of the things about programming in general is that anything is possible with the right code. I think the more correct question would be, "how can the number of links be displayed for some categories and not for others?" Smile

You would need to either include code in sub site_html_print_cat that would test the for the category name to not include the number of links for, or have a field in the categories database that would be a flag (yes or no) that you can test to see whether or not the to display the number of links. If you are not using the header or footer fields, you could use that field to put something in and then test it in sub site_html_print_cat to see if it is empty. If it is, display the number of links. If it is not empty, do not display the number of links.

I hope this helps.