• allanramsby

    (@allanramsby)


    Hello
    In the buttom of a page there are still
    “Write an answer ….name email…” and I will not have it there. Just a blank page. Is that possibel ?

    Regards
    Allan

    LOOK HERE

Viewing 2 replies - 1 through 2 (of 2 total)
  • Michael

    (@alchymyth)

    review https://codex.wordpress.org/Comments_in_WordPress

    in extreme, you might need to edit page.php (in a child theme) and remove the line with ‘comments_template()’

    as this is theme specific, please post in your theme’s forum at https://wordpress.org/support/theme/evolve#postform

    anonymized-13749270

    (@anonymized-13749270)

    If you want to hide comments in that single page, then you can add this to your functions.php file :

    add_action('wp_head', 'hide_comments_19');
    function hide_comments_19() {
    if( is_page( array ( 19 ) ) {
    ?>
    <style type="text/css" media="all">
    #respond,
    div.comments {
        display: none;
    }
    </style>
    <?php
    } else return false;
    }
Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘How to…’ is closed to new replies.