Support » Fixing WordPress » How to enable comments on pages?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter qnkov

    (@qnkov)

    That’s done, but comment box does not appear.

    Example page – https://otaku.bg/otakubg/quiz/

    • This reply was modified 3 years, 10 months ago by qnkov.

    Even though they are supposed to, some themes do not handle comments on Pages. Make sure your theme does, before trying anything else. You can Live Preview a Twenty* theme to verify that your comment settings are correct. Also, there are choices on the Settings > Discussion page that will close comments according to time passing, so make sure that is not the case either.

    Thread Starter qnkov

    (@qnkov)

    If my theme oes not allow comments on pages, how we fix this?

    (it’s “not allowing”, it’s doesn’t call the comment template)
    If you tested with a Twenty* theme, and it showed the comments (how did the comments get onto Pages if your theme wasn’t doing it right?), then it would seem that your theme is the problem. Be sure to verify that…
    All a theme needs to do to show comments is

    if ( comments_open() || get_comments_number() ) :
      comments_template();
    endif;

    You can ask at your theme’s support forum, so it is fixed for everyone.
    Or you can make a child theme and change the page.php template so that it has the comment section in it.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to enable comments on pages?’ is closed to new replies.