I've placed the following line inside the loop, to display a link to each post's comments.
<a href="<?php comments_link(); ?>"><?php comments_number('Be the first to comment!', '1 comment.', '% comments already!'); ?></a>
When I click the link it takes me to the single post page and displays the post content and the comments section at the bottom. I don't want to display the post since there's another link to let users read more of it but I just want that comments link to go to a page that displays only the comments of that specific post.
I tried comments_popup_link and comments_popup_script but the reason that they don't work for me is because I use facebook comments instead of default WP comments. And comments_popup only displays WP comments.