WordPress error where comments usually display

Solution:

please first check your comment.php on your theme folder where there might be code like

 

wp_list_comments( array( ‘callback’ => ‘xxxx_comment’ ) );

change it to

 

wp_list_comments();

hope this one will work for you.