I'm having tremendous trouble getting the new Facebook Page Plugin to work. I discovered that I needed to change SDK src path from //... to http://... because, for some reason it wouldn't load while testing locally.
So in the script that loads the SDK, it now says
...
js.src = "http://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.4&appId=471086929645819";
...
instead of
...
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.4&appId=471086929645819";
...
But now, instead of just getting a plain link to the page (which happened because the SDK didn't load), I get nothing. If I open up the Firefox Network Monitor in the console, I can actually see a bunch of GET requests for all my friends' profile images for use in the widget. So I know that it's actually loading the data, but it's not displaying it on the page. Any idea what's going on? Here's the exact code of the HTML file I'm testing on.
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "http://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.4&appId=471086929645819";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div class="fb-page" data-href="https://www.facebook.com/TheWelcomingCommittee" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true" data-show-posts="true"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/TheWelcomingCommittee"><a href="https://www.facebook.com/TheWelcomingCommittee">The Welcoming Committee</a></blockquote></div></div>
</body>