For the Graphene theme we have a similar issue with Disqus in the slider. I’ve been looking into this, the problem is caused by the following:
Disqus adds an action hook to loop_end.
line 1152 of disqus.php – add_action(‘loop_end’, ‘dsq_loop_end’);
And when we output our slider we use WP_Query which triggers the loop_end action on the end.
I have not yet found a solution ??