Hi:
I have followed the below tutorial page to setup my website, and most of the page work.
https://wpdiscuz.com/docs/wpdiscuz-documentation/getting-started/missing-comment-form/
Unfortunately, one of the page does not work.
The page is as below.
https://menugarage.com/%e9%a6%96%e9%a0%81-2/%e5%8f%b0%e5%8d%97%e7%b1%b3%e7%b3%95/
It fails even if I add shortcode [wpdiscuz_comments].
There are key words "wpDiscuz" in the page of HTML Page Source Viewer.
What happen to this page?
Thanks.
Please leave some feedback (with screenshots) for each point mentioned in this doc: https://wpdiscuz.com/docs/wpdiscuz-7/getting-started/missing-comment-form/
Thanks for your reply.
The following step is how I check missing-comment-form with my website.
Fixing Tip 1:
There is no other comment plugin like Disqus and Jetpack in my website.
Fixing Tip 2:
The below is my setting in Default Form.
Fixing Tip 3:
The below is my setting in Discussions.
Fixing Tip 4:
I had enable the "Allow Comments" in page setting.
I have no idea where is the "Discussions" setting.
Fixing Tip 5:
I have check the "comment" with the page setting.
The "開放留言" correspond to "comment" in page setting.
I have added the function add_post_type_support() in functions.php.
The following page does not show comment.
https://menugarage.com/%e9%a6%96%e9%a0%81-2/%e5%8f%b0%e5%8d%97%e7%b1%b3%e7%b3%95/
I tried to add the following code, it also didn't work.
add_action(
'init'
,
'wpdocs_custom_init'
);
/**
* Add excerpt support to pages
*/
function
wpdocs_custom_init() {
add_post_type_support(
'page'
,
'excerpt'
);
}
Is there a function for "Page"?
My other page has comment area.
https://menugarage.com/%e9%a6%96%e9%a0%81-2/%e4%b8%80%e7%a7%81%e9%ba%b5%e5%ae%85/
It works!
Thanks to reply efficiently and kindness.
The below page does not work even if I add shortcode.
https://menugarage.com/%e9%a6%96%e9%a0%81-2/%e5%a4%a7%e6%99%82%e9%90%98%e5%a4%a9%e9%a6%99%e9%ba%b5/
I can see the wpdiscuz code in the page of HTML Page Source Viewer on the above page.
All of my pages work.
Thanks.