Hi guys,
Yes, it will replace the reviews section and it’s made that way. Though I added this code but has no effect
add_action('init', 'remove_fb_comment_review', 99999);
function remove_fb_comment_review () {
if ( is_singular('product') ) remove_filter( 'comments_template', 'tco_facebook_comments_template' );
}
That should remove the facebook comment in review section. Perhaps, I will need your FTP login credentials as well so I could directly change the template, OR, please follow this
- Edit this file
\wp-content\plugins\tco-facebook-comments\functions\output.php
- Change this line of code
if ( isset( $tco_facebook_comments_enable ) && $tco_facebook_comments_enable == 1 ) {
to this
if ( isset( $tco_facebook_comments_enable ) && $tco_facebook_comments_enable == 1 && !is_singular('product') ) {
@joybram You could try that too, and please start a new topic/thread about this as you shouldn’t post your credentials in someone’s thread even if it’s in a secure note 
Thanks!