https://news.zip.ua/books/%D0%BF%D1%80%D0%B8%D0%B2%D0%B5%D1%82-%D0%BC%D0%B8%D1%80/
I add to functions.php this
add_action( 'plugins_loaded', function() {
remove_filter( 'comments_template', array( 'HMN_Comment_Popularity', 'custom_comments_template' ) );
}, 100 );
and replace in comments.php:
<ol class="commentlist">
<?php wp_list_comments( 'avatar_size=96&type=comment' ); ?>
</ol><!--/.commentlist-->
by:
<ol class="commentlist">
<?php /* wp_list_comments( 'avatar_size=96&type=comment' ); */
if ( function_exists( 'hmn_cp_the_sorted_comments' ) ) {
hmn_cp_the_sorted_comments( $args );
} else {
wp_list_comments( 'avatar_size=96&type=comment' );
}?>
</ol><!--/.commentlist-->