Support » Fixing WordPress » How to remove (Leave a Reply) on top of each post

  • Resolved bilakios

    (@bilakios)


    to remove leave a reply from the top of each post
    use FTP go to your blog folder find /wp-content/themes/twentytwelve/content.php
    open content.php
    find

    <div class="comments-link">
    					<?php comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
    				</div><!-- .comments-link -->

    and change it to

    <div class="comments-link">
    					<?php //comments_popup_link( '<span class="leave-reply">' . __( 'Leave a reply', 'twentytwelve' ) . '</span>', __( '1 Reply', 'twentytwelve' ), __( '% Replies', 'twentytwelve' ) ); ?>
    				</div><!-- .comments-link -->

    also open page.php and single.php find
    <?php comments_template( '', true ); ?>
    and change it to
    <?php //comments_template( '', true ); ?>
    that should do the job

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘How to remove (Leave a Reply) on top of each post’ is closed to new replies.