Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

Removing "New" in category page

Quote Reply
Removing "New" in category page
How can I remove or rename "New" in category page? And where?
Quote Reply
Re: Removing "New" in category page In reply to
If you are using templates, the code is in link.html; otherwise, it will be in sub site_html_link of site_html.pl.

I hope this helps.
Quote Reply
Re: Removing "New" in category page In reply to
I changed the tag "new" in links (link.html), but not in category page...where is the problem?

Quote Reply
Re: Removing "New" in category page In reply to
Oops, I thought you wanted to remove it from the links... I apologize. I misread the message.

You need to go to sub site_html_print_cat in site_html_templates.pl. Just put a pound-sign (#) at the start of the line that says:

Quote:
$output .= qq|<small><sup class="new">new</sup></small>| if (&days_old($mod) < $db_new_cutoff);

I hope this helps.

[This message has been edited by Bobsie (edited May 21, 1999).]
Quote Reply
Re: Removing "New" in category page In reply to
Thanks! It works!!!