Notifications
Clear all

wpDiscuz Comments not displaying

7 Posts
4 Users
0 Likes
7,975 Views
 Seal
(@seal)
New Member
Joined: 6 years ago
Posts: 3
Topic starter  

I have exactly the same issue as this, unfortunately, there was not solution in the thread.

Problem With wpDiscuz, comments don't display. "2 Comments" displays, and then the form displays fine, just not comments. If I deactivate the plugin, the comments are displayed.

I have no cache installed yet. I use the Divi theme. No other extensions handle comments, and I disabled them all to see if they effected the situation... nothing.

tia...


   
Quote
Topic Tags
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5911
 

Hi @seal

Could you please check using a default theme? 


   
ReplyQuote
 Seal
(@seal)
New Member
Joined: 6 years ago
Posts: 3
Topic starter  

Yes, it works with twentyseventeen, so I guess its an interaction with wpDiscuz and Divi.

I will investigate further.


   
ReplyQuote
 Seal
(@seal)
New Member
Joined: 6 years ago
Posts: 3
Topic starter  

Here is an eloquent description and request for fix, but there is no answer.

Here is someone who says he does it without any issues. I can confirm that it sortof does work if (a) you find all the Divi shortcodes a page uses, then (b) use the default editor, pasting in all the shortcodes, finally (c) check the Discussion > Allow Comments box... wpDiscuz does work. For me it requires login, even if login is not required in settings. Hmmm...

Here is how to make a shortcode that might side-step the Divi comment system. This sortof worked, but comments appeared above the normal content. Weird.

This post was modified 6 years ago by Seal

   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5911
 

Hi @seal,

For me it requires login, even if login is not required in settings. Hmmm...

Please navigate to Dashboard > Comments > Forums admin page, make sure the "Allow guests to comment" option is enabled.

More info here:  https://wpdiscuz.com/docs/wpdiscuz-documentation/getting-started/custom-comment-form/comment-form-settings/#only-loggedin

Here is how to make a shortcode that might side-step the Divi comment system. This sortof worked, but comments appeared above the normal content. Weird.

Use the following code, it will work properly:

function my_wpdiscuz_shortcode() {
if (file_exists(ABSPATH . 'wp-content/plugins/wpdiscuz/templates/comment/comment-form.php')) {
ob_start();
include_once ABSPATH . 'wp-content/plugins/wpdiscuz/templates/comment/comment-form.php';
return ob_get_clean();
}
}

add_shortcode('wpdiscuz_comments', 'my_wpdiscuz_shortcode');

   
ReplyQuote
(@se8820726)
New Member
Joined: 5 years ago
Posts: 4
 
Posted by: @seal

Problem With wpDiscuz, comments don't display. "2 Comments" displays, and then the form displays fine, just not comments.

Did anyone solve this problem at last?

we have this problem too. but we don't use Divi theme. we have our personal theme.


   
ReplyQuote
Elvina
(@elvina)
Support
Joined: 5 years ago
Posts: 1403
 
Posted by: @se8820726

we have our personal theme.

The custom theme you are using, developed by you?

If yes please leave the example URL  to allow us to check it. 

If no, you should contact the custom theme developers, and ask them this question.


   
ReplyQuote
Share:
Scroll to top