Gossamer Forum
Home : Products : Links 2.0 : Customization :

Home Page

Quote Reply
Home Page
Hi there,

How can I remove the numbers and new image from the home page.

For example:
on the main page when listing categories it shows like this:

Links (20) new

I want to change this to just:

Links

Please help!

Quote Reply
Re: Home Page In reply to
 
You need to edit the file site_html.pl

In the file look for the header:

sub site_html_print_cat {

This is the section which does the category listing for
the homepage. If you want to remove the links number from
the categories, edit this line:

$output .= qq~<dl><dt><strong><a class="link" href="$url">$category_name</a></strong> <small class="numlinks">($numlinks)</small> ~;

remove the ($numlinks)


Hope that solves it.

Paul




.......................
IDNetUK www.idnetuk.com
.......................
Quote Reply
Re: Home Page In reply to
Thanks Paul