Reference URL: https://developers.facebook.com/docs/reference/plugins/like-box/
By default, I'd like it to "show faces" but not "show stream". After "Like" is clicked, I'd like to "show stream".
If there's a way to change the options on the fly (without reloading the entire iFrame), I'd basically do this:
FB.Event.subscribe('edge.create',
function() {
FB.LIKEBOX_ENABLE_STREAM(); //<-- Not real. Or is it, but with a different name? ;)
}
);
Bonus question:
I think this may be not possible, but if a visitor who already likes our page arrives at the site, I'd like to automatically "show stream" (or maybe not even show the box). Is this possible? If so, how?
A million thanks!