Notifications
Clear all

How do I get the facbook comments in a tab next to the native comments?

3 Posts
2 Users
0 Likes
2,065 Views
 Mark
(@think)
Member Customer
Joined: 8 years ago
Posts: 9
Topic starter  

Hi guys,

I appreciate all the assistance you've been providing me so far getting this running well, and it looks like I've got one more question for ya. Since the "Social Commenting" feature of WPSuperSocialize is incompatible with Google's ReCaptcha, and must be disabled if I wish to use that plugin to simplify my captcha, what other plugins can be used to restore the facebook comments as a tab which are compatible?


   
Quote
 Mark
(@think)
Member Customer
Joined: 8 years ago
Posts: 9
Topic starter  

This can be marked as resolved, I'm going to find a different solution (because of an unrelated issue to this). Thanks!


   
ReplyQuote
 Tom
(@tomson)
Famed Member Admin
Joined: 9 years ago
Posts: 4168
 

You can use Comments Evolved with wpDiscuz. To make wpDiscuz available in the native comment tab you should make this small change in this plugin /includes/templates/partials/wordpress.php file:

Find this code:

if (file_exists(TEMPLATEPATH . '/comments.php')) {
	include_once TEMPLATEPATH . '/comments.php';
} elseif (file_exists(TEMPLATEPATH . '/includes/comments.php')) {
	include_once TEMPLATEPATH . '/includes/comments.php';
}

Replace to this:

if(file_exists(ABSPATH . 'wp-content/plugins/wpdiscuz/templates/comment/comment-form.php')){
    include_once ABSPATH . 'wp-content/plugins/wpdiscuz/templates/comment/comment-form.php';
}elseif (file_exists(TEMPLATEPATH . '/comments.php')) {
    include_once TEMPLATEPATH . '/comments.php';
} elseif (file_exists(TEMPLATEPATH . '/includes/comments.php')) {
    include_once TEMPLATEPATH . '/includes/comments.php';
}

 


   
ReplyQuote
Share:
Scroll to top