I had the same issue and disabling the plugins didnt help.
I just added this inside wp-includes/query.php file
/**
* Set if query is within comments popup window.
*
* @since 1.5.0
* @access public
* @var bool
*/
public $is_comments_popup = false;
straight after this:
public $is_embed = false;
That solved the problem.