Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

On my site, commenting is not enabled.

But at the top of each blog post (except for one, strangely), there's a 'Leave a reply' link.

(the link doesn't do anything -- but the words 'leave a reply' sitting there obviously make it look like you can leave a reply...)

I don't see any 'discussion module' in my edit-post page.

Here's an example page with a 'Leave a reply' link, just under the post title:

http://richardclunan.com/blog/i-bet-these-12-questions-can-help-you-sell-more-helpful-copywriting-ideas/

I'm on Mac Chrome -- in case it's a small browser-related bug...

share|improve this question
2  
What Theme are you using? Please post relevant code. – Chip Bennett Feb 25 at 20:00

1 Answer

up vote 1 down vote accepted

Maybe you have forgotten to wrap the comments_popup_link() with if ( comments_open() )

if ( comments_open() ) :
  comments_popup_link( [...] );
endif;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.