Currently, we see the wpDiscuz under the question.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
Yes, you can see it, but you cannot add comments (please try), because of Form not working on question type (I added those comments from wp-admin). Form works fine on download type and post type. Please help
Seems the comments_open() property is somehow closed. Please put this code in the active theme functions.php file:
add_filter('comments_open', function ($open, $post_id) {
if (get_post_type($post_id) === 'dwqa-question') {
$open = true;
}
return $open;
}, 99999, 2);
Just make sure the red marked value is matched with the post type created by the plugin.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.
In case you want to say thank you! 🙂 We'd really appreciate if you leave a good review on the plugin page. This is the best way to say thank you to this project and the support team.