I currently have 3 comment fields on one page. There are three tabs on this page that display different content, and each tab content has its own comment section, different from the other two.
To make sure that unique comments are loaded for each tab, I am currently using something similar to:
<div class="fb-comments" data-href="http://webpage.com/index.html#tab1"
data-num-posts="2" data-width="470"></div>
<div class="fb-comments" data-href="http://webpage.com/index.html#tab2" ...
<div class="fb-comments" data-href="http://webpage.com/index.html#tab3" ...
This works when displaying relevant content. However, when someone answers one of these comments, the original commenter gets a link to his fb profile, which displays as:
http://webpage.com/index.html?fb_comment_id=fbc_26547577547547_477747457_3745757457435737#4574575475
The problem is that this user-provided link does not display the corresponding comment stream or even the -href comment block based on the binding. Perhaps the end anchor is disconnected from the display? If so, is there a paradigm for different comment fields on the same page?
Thanks for any help with this annoying problem.
source
share