1) You can also add this to the homepage:
<iframe src="http://www.facebook.com/plugins/likebox.php?id=362816109006&width=292&connections=10&stream=false&header=false&height=255" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:292px; height:255px;" allowTransparency="true"></iframe>
( you can test it on a simple html page )
2) Or this alternative:
<fb:like-box profile_id="362816109006" width="292" connections="10" stream="false" header="false"></fb:like-box>
But you will need also to add this after the head of page:
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: 'your app id', status: true, cookie: true,
xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
Everything come from here:
http://developers.facebook.com/docs/reference/plugins/like-boxEDIT:
Now it has the right id
