Hi
When 'no feed' is selected for a particular blog, b2evo correctly provides no feeds if the rss or atom urls are accessed. However, the skins are unaware that 'no feed' has been selected and still displays the auto discovery links. Below is the solution from the support forum:
In your skin replace:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php $Blog->disp( 'rss2_url', 'raw' ) ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="<?php $Blog->disp( 'atom_url', 'raw' ) ?>" />
with :
<?php $feed_content = $Blog->get_setting('feed_content');
if( $feed_content != 'none' ) { ?>
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php $Blog->disp( 'rss2_url', 'raw' ) ?>" />
<link rel="alternate" type="application/atom+xml" title="Atom" href="<?php $Blog->disp( 'atom_url', 'raw' ) ?>" />
<?php } ?>
Cheers
Lee
Fixed in 3.x thanks ;)
¥