• two out of five locations it will fix, not all. yes it hides comments form the admin view, but not from the links above a post, it still says, “Write a comment” with a link, that is now dysfunctional. it would be nice for this plug to work more completely.

Viewing 1 replies (of 1 total)
  • Plugin Author Vitor Carvalho

    (@lightningspirit)

    Please, read the FAQ here http://wordpress.org/extend/plugins/hide-comments-feature/faq/
    There is a pretty good explanation on how to solve this issue.

    And about my theme? Comments still there…
    That’s because your theme either is too old or it doesn’t rely on the newest WordPress API. So you have to upgrade it, find a new one or, play with CSS to hide some HTML parts of the theme. Example of code to go into functions.php:

    [code]
    <?php
    function my_hide_comments_css() {
    ?>
    <style type="text/css">
    /* Your CSS here */
    </style>
    <?php
    }
    add_action( 'hide_comments_css', 'my_hide_comments_css' );
    ?>
    [/code]

    Though, the main purpose of this plugin is to help web designers and developers creating WordPress sites they can ensure that their users will no longer see mentioned the word “Comment”.

    This plugin WORKS properly because its main purpose is to remove the comments funcionality. It is not possible to remove all sentences with “comment” word in it form the theme template files.

    I you need help, I am here.

Viewing 1 replies (of 1 total)
  • The topic ‘does it really work?’ is closed to new replies.