Hi,
Updating pro plugin from 1.7.0 to 1.7.1 makes wordpress ignoring my child theme’s file comments.php, altough I use the following filter :
function override_comment_template( $comment_template ) {
global $post;
if ( !( is_singular() && ( have_comments() || ‘open’ == $post->comment_status ) ) ) {
return;
}
// your full path and name of comments file to use
return get_stylesheet_directory() .”/comments.php”;
}
add_filter( “comments_template”, “override_comment_template” );
Can you please fix this ? For now I’ll be rolling back to 1.7.0
Thanks!
Benoit
Hi! The 1.7.1 update did not change anything to the comments widget, so I wonder what the issue is that you have. Can you send me login details and ftp of your site?
Where do you use the comments widget in your design? I do not see it
Hi, I found the bug in the plugin and fixed it in version 1.7.2 which I installed on your site.