Hi Jan!
I think facebook changed the comment plugin actually and requires now a change of code.
What I did to resolve the problem:
I changed the following code in modules/mod_phoca_facebook_comments/tmpl/default.php
from:
Code: Select all
<fb:comments xid="<?php echo $xid ?>" simple="1" width="<?php echo (int)$this->tmpl['fb_comment_width'] ?>"></fb:comments>
into:
Code: Select all
<fb:comments href="http://LINK_TO_WEBSITE" xid="<?php echo $xid ?>" simple="1" width="<?php echo (int)$this->tmpl['fb_comment_width'] ?>"></fb:comments>
and it worked then without mistakes. I was sitting a few hours to find another solution because actually I like the Comments Plugin with the pagination as you have much more as the new one, as the height of my website is limited thorugh design issues.
If you have another solution I would be very happy with it. Facebook Developer Forum is dead as always, there is nobody who could give any answer so far.
I know there should be a dynamic version to get the URL , but my programming knowledge is limited.
Wolve