Hihi, no problem. I think interesting when I help you. I living Vietnam country, I speak English not well, could you skip for me.
http://thongtincanbiet.vn/
Okay, I can fix your problem. But I’m not sure have an other problem.
1. You find
/wp-content/plugins/gplus-comments/includes/lib/frontend.php
2. Edit
frontend.php
function comments_evolved_template($file) {
global $post, $comments;
if ( !(is_singular() && (have_comments() || ‘open’ == $post->comment_status))) {
return;
}
return COMMENTS_EVOLVED_TEMPLATES . ‘/container.php’;
}
=> Add function “!is_page()“
function comments_evolved_template($file) {
global $post, $comments;
if (!(!is_page() && is_singular() && (have_comments() || ‘open’ == $post->comment_status))) {
return;
}
return COMMENTS_EVOLVED_TEMPLATES . ‘/container.php’;
}