Hi there. I do not see where to add this plugin to my pages. I use elementor and normally I see new widgets there which in this case is not working.
Hi @yalniziyigezdim,
Please navigate to the Dashboard > Comments > Forms admin page, edit the default form you use, and make sure the "Display comment form for post types" is enabled for post types you want to show the comment form.
See the screenshot below: https://www.screencast.com/t/YaY3Jr4Kb0iC
More info here: https://wpdiscuz.com/docs/wpdiscuz-documentation/getting-started/custom-comment-form/comment-form-settings/#post-types
Hello. I checked form page but it was already ticked. I edited some parts of it but it is not added to my webpage.
Please check the points mentioned in this documentation: https://wpdiscuz.com/docs/wpdiscuz-documentation/getting-started/missing-comment-form/
Hello. I have WPForms Lite which came as default. Shall I delete it?
Also In fixing tip 4, I have the screenshot and I cant do anything.
I guess Tip 5 and 6 are complicated for me as I am not a code writer and do not wanna interrupt the website.
Tnx
I guess Tip 5 and 6 are complicated for me as I am not a code writer and do not wanna interrupt the website.
Regarding the Fixing Tip 5, you can simply put the following code in the active theme functions.php file:
function comment_support_for_my_custom_post_type() {
add_post_type_support( 'my_post_type', 'comments' );
}
add_action( 'init', 'comment_support_for_my_custom_post_type' );
Save delete all caches, then press CTRL+F5(twice) on the frontend and check again.
What about the Fixing Tip 6, please contact your active theme developers and ask them to add this function in template files.
More info here: https://codex.wordpress.org/Function_Reference/comments_template