Would really appreciate any input that anyone has into an issue I'm having with the Facebook Comments plugin system.
Essentially, We have created a Wordpress theme which was launched last year and used the old legacy FMBL to integrate facebook comments. The code to pull in comments was something like:
<div id="fb-root" style="padding-top:8px;">
</div>
<script src="http://connect.facebook.net/en_US/all.js#appId=<?php
echo $facebookappid; ?>&xfbml=1"></script>
<fb:comments
URL="<?php the_permalink() ?>"
xid="<?php echo $post->ID; ?>"
publish_feed="true"
migrated="1"
reverse="false"
numposts="20"
width="620">
</fb:comments>
Now the problem is that we are getting errors on some of our sites saying the following:
--
Warning: this comments plugin is operating in compatibility mode, but has no posts yet. Consider specifying an explicit 'href' as suggested in the comments plugin documentation to take advantage of all plugin features.
--
I have tried changing the URL value to HREF which fixes the issue but also removes all the previous facebook comments on the site. It seems that with the old system they were not effectively posted to Facebook.
Does anyone know of a way we could migrate comments from the old to the new system (the migrate function does not work in this case).