Comments deactivated

I can’t write comments to new articles (no add comment link available). I use WordPress 3.4.

I checked the discussion properties and they are set to

Read More
  • allow guests to comment articles
  • none of the other (relevant) options are checked

I have the feeling that comments aren’t available since I installed some plugins. But I tried deactivating some with no success in activating comments again.

Suggestions?

Related posts

Leave a Reply

2 comments

  1. Comments might have been closed once. If you change this option later globally it doesn’t affect existing posts when comments were turned off per post. To test if comments really work create a new post and enable the discussion meta box on that screen:

    enter image description here

    If you can comment while all plugins are disabled and the theme is TwentyEleven (default) – then everything works as expected.

  2. @toscho is right, you might have been disabled the comments for individual posts.

    However if you want to enable comments for all your old posts you accidentally disabled, you can use following MySQL query to do it once instead editing each post manually.

    UPDATE wp_posts SET comment_status = 'open' WHERE post_type = 'post'
    

    Notice – This will enable comments for all your posts not the pages.

    Warning – Don’t forget to backup your database before using this query.