guys how to remove comments ?

8 replies
  • WEB DESIGN
  • |
here is one of my page

Top Five Nutrition For Building Muscles

how to remove the Leave reply box , option and comments


thanks
#comments #guys #remove
  • Profile picture of the author Sowkat Hossain
    You can try by this css #comments{display: none;}. If it doesn't work you can try by this #comments{display: none !important;}
    {{ DiscussionBoard.errors[10260121].message }}
  • Profile picture of the author Mehwish84
    in style.css line #1803 also make a class with name commentlist and add display:none to both. Please check disabling comments option should be there in your theme also.

    You can also use this plugin to disable it
    https://wordpress.org/plugins/disable-comments/
    {{ DiscussionBoard.errors[10260252].message }}
  • Profile picture of the author Mehedi+wdd
    You can go to wordpress dashboard and deselect commment from screen option.
    {{ DiscussionBoard.errors[10260517].message }}
    • Profile picture of the author Devilfish168
      comments disable I know

      is that column

      you see

      it will stated

      leave reply

      input you name , website than comment under the box.
      {{ DiscussionBoard.errors[10261744].message }}
      • Profile picture of the author savidge4
        The "Best" method to doing this is once you have posted the page or post go back into your Dashboard and then click post or page. from here you want to find the page or post you want to remove the comments section from and then select "Quick edit" you will then see to the right a check box "Allow Comments" and simply ensure this us UN CHECKED
        Signature
        Success is an ACT not an idea
        {{ DiscussionBoard.errors[10261788].message }}
        • Profile picture of the author rhinocl
          For posts uncheck allow comments

          For pages use plugin 'no comments on pages' (or edit the template)
          For comments that are already there you can zap them on-mass in the database using a query (be careful with this if you mess it up you'll have to restore all or part of your database from a backup
          {{ DiscussionBoard.errors[10262274].message }}
  • Profile picture of the author abbe77
    so you want to hide whole comment form.... go to your style.css and find the following code

    #respond {
    clear: both;
    margin: 20px 0 10px;
    overflow: hidden;
    position: relative;
    }

    Replace it with the following

    #respond {
    clear: both;
    margin: 20px 0 10px;
    overflow: hidden;
    position: relative;
    display: none;
    }
    {{ DiscussionBoard.errors[10262876].message }}
    • Profile picture of the author savidge4
      This doesn't hide the entire "Comment" section. this ONLY removes the "responses" and not the actual Comment form.

      Again there is no need to do CSS or a PLUGIN for this, its in the page edit screen if you go back in with "Quick Edit" for PAGES and POSTS

      Originally Posted by abbe77 View Post

      so you want to hide whole comment form.... go to your style.css and find the following code

      #respond {
      clear: both;
      margin: 20px 0 10px;
      overflow: hidden;
      position: relative;
      }

      Replace it with the following

      #respond {
      clear: both;
      margin: 20px 0 10px;
      overflow: hidden;
      position: relative;
      display: none;
      }
      Signature
      Success is an ACT not an idea
      {{ DiscussionBoard.errors[10262949].message }}

Trending Topics