Quote:
Originally Posted by category
yep here is my site http://www.drillerdeals.com/
i get no comments i dont understand what am i doing wrong i post on forum than it publish on wordpress?
kinda confused
|
If you want not to dsiplay comments on front page or if your comments are off then. Do the following:
find this in ur feed_functions.php:
PHP Code:
function comments_rss_link($link_text = 'Comments RSS', $commentsrssfilename = '') {
global $post;
include_once (ABSPATH . WPINC . '/vb3-settings.php');
if ($vb_bridge) {
$url = $vb_path . '/postfeed.php?t=' . $post->vb_threadid . '&type=rss2';
} else {
$url = comments_rss($commentsrssfilename);
}
echo "<a href='$url'>$link_text</a>";
}
Replace it with:
PHP Code:
function comments_rss_link($link_text = 'Comments RSS', $commentsrssfilename = '') {
$url = comments_rss($commentsrssfilename);
echo "<a href='$url'>$link_text</a>";
Or alternatively use this attached file and replace the existing one.
I think this should fix your problem, Also I have updated your files.
Let me know your result.