• Resolved ghamza

    (@ghamza)


    Hey everybody,

    have some problems with removing the “Comments are closed” comment from every page. Search a long time in the internet, but no solution works for my page.

    E.g.
    Trying delete ?Comment are closed“ in the comment.php: <p class=”nocomments”><?php _e( ‘Comments are closed.’ ); ?></p> -> nothing happend

    Delete everything in the comment.php file -> nothing happend

    using style.css solution: .nocomments { display:none; } -> nothing happend

    Install plugin ?Remove “Comments are closed”“ -> nothing happend

    Trying Atahualpa template, and delete the function in the option -> nothing happend

    The template is f8lite. Comment .php file:

    <div id="comments">
    <?php if ( post_password_required() ) : ?>
    				<p class="nopassword"><?php _e( 'This post is password protected. Enter the password to view any comments.' ); ?></p>
    			</div><!-- #comments -->
    <?php
    		/* Stop the rest of comments.php from being processed,
    		 * but don't kill the script entirely -- we still have
    		 * to fully load the template.
    		 */
    		return;
    	endif;
    ?>
    
    <?php if ( have_comments() ) : ?>
    			<h3 id="comments-title"><?php
    			printf( _n( 'One Response to %2$s', '%1$s Responses to %2$s', get_comments_number() ),
    			number_format_i18n( get_comments_number() ), '<em>' . get_the_title() . '</em>' );
    			?></h3>
    
    <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
    			<div class="navigation">
    				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments' ) ); ?></div>
    				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>' ) ); ?></div>
    			</div> <!-- .navigation -->
    <?php endif; // check for comment navigation ?>
    
    			<ol class="commentlist">
    				<?php
    					/* Loop through and list the comments. Tell wp_list_comments()
    					 * to use f8_comment() to format the comments.
    					 * If you want to overload this in a child theme then you can
    					 * define f8_comment() and that will be used instead.
    					 * See f8_comment() in f8-lite/functions.php for more.
    					 */
    					wp_list_comments( array( 'callback' => 'f8_comment' ) );
    				?>
    			</ol>
    
    <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) : // Are there comments to navigate through? ?>
    			<div class="navigation">
    				<div class="nav-previous"><?php previous_comments_link( __( '<span class="meta-nav">&larr;</span> Older Comments' ) ); ?></div>
    				<div class="nav-next"><?php next_comments_link( __( 'Newer Comments <span class="meta-nav">&rarr;</span>' ) ); ?></div>
    			</div><!-- .navigation -->
    <?php endif; // check for comment navigation ?>
    
    <?php else : // or, if we don't have comments:
    
    	/* If there are no comments and comments are closed,
    	 * let's leave a little note, shall we?
    	 */
    	if ( ! comments_open() ) :
    ?>
    	<p class="nocomments"><?php _e( 'Comments are closed.' ); ?></p>
    <?php endif; // end ! comments_open() ?>
    
    <?php endif; // end have_comments() ?>
    
    <?php comment_form(); ?>
    
    </div><!-- #comments -->

    Maybe somebody could help me, would be great. Thanks ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • Posting a link to your site would help someone help you. The CSS approach is the simplest and is likely an easy fix.

    Thread Starter ghamza

    (@ghamza)

    Okay, here ist the link to the page:

    https://tinyurl.com/cqkmct4

    Where do you see “comments are closed” on this pages ?

    I see more an error like that :

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 30720 bytes) in /var/www/web130874/html/wordpress/wp-content/themes/f8-lite/comments.php on line 41

    Thread Starter ghamza

    (@ghamza)

    Ok, seems to be another problem, try to fix this.

    But still have the problems with the “Comments Off”, no one can help me, please?? ??

    Have you tried

    .nocomments { display:none !important; }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Disable "comment are closed"’ is closed to new replies.