Hi, on my site happySoulHungryMind.com the “Leave a Comment” link does not do anything. (The llink in the sidebar to a specific comment does work.)
Based on a previous topic-post I created a child theme and added the below code to the function.php file in the child theme. Thanks,
add_filter(‘x_entry_meta_comments_link’, ‘x_change_comment_link’);
function x_change_comment_link($link){
global $post;
include_once( ABSPATH . ‘wp-admin/includes/plugin.php’ );
if ( is_plugin_active( ‘tco-disqus-comments/tco-disqus-comments.php’ ) ) {
return get_permalink( $post->ID ) . ‘#comments’;
}
return $link;
}