Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Comments, trackbacks & pings (http://forum.bytesforall.com/forumdisplay.php?f=19)
-   -   Comments on Home Page (http://forum.bytesforall.com/showthread.php?t=743)

Steve_T Mar 13, 2009 01:22 AM

Comments on Home Page
 
I've allowed comments in pages at www.skinningrove.tv

However this means a comment box appear on the home splash page which is not the blog. Is there anyway I can stop comments appearing on the home page

Flynn Mar 13, 2009 03:08 PM

In index.php change

PHP Code:

         <?php // Load Comments template (on single post pages, and "Page" pages, if set on options page) 
        
if ( is_single() OR ( is_page() && $bfa_ata_comments_on_pages == "Yes") ) {
            if (
function_exists('paged_comments')) { 
                
paged_comments_template(); // If plugin "Paged Comments" is activated, for WP 2.6 and older
                
} else { 
                
comments_template(); // This will load either legacy comments template (for WP 2.6 and older) or the new standard comments template (for WP 2.7 and newer)
            
}     
        } 
?>

to

PHP Code:

         <?php // Load Comments template (on single post pages, and "Page" pages, if set on options page) 
        
if ( is_single() OR ( is_page() && $bfa_ata_comments_on_pages == "Yes" && !is_front_page() )) {
            if (
function_exists('paged_comments')) { 
                
paged_comments_template(); // If plugin "Paged Comments" is activated, for WP 2.6 and older
                
} else { 
                
comments_template(); // This will load either legacy comments template (for WP 2.6 and older) or the new standard comments template (for WP 2.7 and newer)
            
}     
        } 
?>


maguai Jul 28, 2009 01:26 PM

Is there a solution to this in 3.4.1? I could not find those lines in index.php

maguai Jul 28, 2009 01:29 PM

Never mind, I just uncheck allow comments under the page area for my homepage. Got it.


All times are GMT -6. The time now is 09:38 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.