Hey all,
Berend hit the nail on the head. I installed Facebook Comments for WordPress for the first time a short while ago and was puzzled why it did not work. I got to Berend’s post, and then I edited the file facebook-comments-for-wordpress/facebook-comments-functions.php (in the WordPress control panel:
Plugins -> Facebook Comments for WordPress -> Edit -> # facebook-comments-for-wordpress/facebook-comments-functions.php
I searched for every line of code that started with console.log and simply appended in front of it:
if (typeof console != ‘undefined’)
So, instead of (for example):
console.log(‘fbComments: Caught added comment’);
it now reads:
if (typeof console != ‘undefined’) console.log(‘fbComments: Caught added comment’);
Voila, it works perfectly now. Hurrah!