• I’d like to disable the comments on question/answer pages. It gets confusing, and users simply hit “reply” and comment rather than moving on to the “answer” section. Is there a way to do this across the plugin? Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • I’m not really sure what you mean by “question/answer” pages – that is not a feature of core WordPress and presumably is something customised for your site.

    If the “questions” are a specific post type, then you can disable comments on these from the plugin settings page. If not, then you probably need to turn off comments individually on the relevant posts.

    Plugin Author DesignWall

    (@designwall)

    To disable the comment section of the plugin, you can add the following code to the style.css file:

    .dwqa-comments {
        display: none;
    }

    Or open the content-single-question.php file and content-single-answer.php file remove the following code:
    <?php comments_template(); ?>
    Regards,

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable comments’ is closed to new replies.