1 sallym Oct 08, 2007 10:14
3 jibberjab Oct 08, 2007 14:41
In your skin's _main.php find the section (probably in the sidebar) that looks similar to this:
<h3><?php echo T_('Syndication') ?></h3>
<li>
<br />RSS 2.0:<br /><br />
<a href="<?php $Blog->disp( 'rss2_url', 'raw' ) ?>" title="RSS2.0 Posts" ><img src="img/rss2posts.gif" width="80" height="15" alt="RSS2.0 Posts" title="RSS2.0 Posts" /></a>
<a href="<?php $Blog->disp( 'comments_rss2_url', 'raw' ) ?>" title="RSS2.0 Comments" ><img src="img/rss2com.gif" width="80" height="15" alt="RSS2.0 Comments" title="RSS2.0 Comments"
/></a>
</li>
and remove the second A HREF... the part that talks about "comments"... (or you can just comment it out)... The end result should looks something like this:
<h3><?php echo T_('Syndication') ?></h3>
<li>
<br />RSS 2.0:<br /><br />
<a href="<?php $Blog->disp( 'rss2_url', 'raw' ) ?>" title="RSS2.0 Posts" ><img src="img/rss2posts.gif" width="80" height="15" alt="RSS2.0 Posts" title="RSS2.0 Posts" /></a>
</li>
Do the same for the RSS .92, RSS 1, and ATOM sections...
As far as *what* RSS feeds are... well.. have a read here:
http://blog.webreakstuff.com/2005/07/rss-vs-atom-you-know-for-dummies/
(You should also give some serious consideration to updating your blog to a current version, but first-things first)
jj.
4 sallym Oct 08, 2007 14:54
There's a current version already? Mine is only a few months old...everything changes way too quickly :).
Im happy to keep the RSS feeds for comments because, so far as I can tell, RSS feeds dont give away any contact or IP information on the person commenting to other subscribers. Am I wrong?
Thanks for the link, will have a read right now :)
5 jibberjab Oct 08, 2007 14:56
Oh, well, you listed your version as 0.9.x which is a very outdated version...
jj.
6 sallym Oct 08, 2007 15:00
Sorry, I selected what I thought sounded the closest from the drop box...Ive got 1.9.3. Naive.
Ive pretty much fixed the problem, a round-about way perhaps but should work. I removed the "comments" check box options from the subscriptions.php and deleted all my users. Drastic but so be it. Also suggested that if users want to ne notified of comments they should subscribe to the RSS.
Anyone forsee any problems?