Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Stop Cool and Ratings?

Quote Reply
Stop Cool and Ratings?
Is there a way to completely disable Cool and Ratings and prevent those pages being built?

Thanks,
--Jo
Quote Reply
Re: [iplay] Stop Cool and Ratings? In reply to
Hi,

The easiest option, is just to comment them out in nph-build.cgi. What I would do (easier) is just to "return" on these:

Code:
sub _build_cool {
# ------------------------------------------------------------------
# Generate the what's cool listings.
#
return; # add this!

..and the same with ratings:

Code:
sub _build_ratings {
# ------------------------------------------------------------------
# Generate the ratings page.
return; # add this!

It would be nice to have it as an admin option, but I doubt that would get added :(

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [iplay] Stop Cool and Ratings? In reply to
Yes, that works!

Many thanks.

Thanks,
--Jo