Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is a little complex, please bear with me.

We've implemented the like box and the issue is about what page shows up. There is a company page and a "place" page.

When I am logged into FB, the stream from an associated place page is displayed.

If however, I start a fresh browser and do not log into FB, the stream from the company page is displayed. The ID number is from the company page.

The behavior happens on two pages http://TheVillageCup.com/community.php and http://CarolinesVT.com/community.php

share|improve this question
Can you post some more information? Code samples of what you have tried, links to where we can confirm this behavior...etc. – Lix Jan 17 '12 at 18:48

2 Answers

I have a feeling that this has something to do with the code you've placed on your page. For the Like Box, it asks for a facebook page url.

However, in the loading of the JS SDK, it's asking for an app id.

<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 = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=**APP ID**";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<div 
   class="fb-like-box" 
   data-href="**FacebookPageUrl**"  
   data-width="292"  
   data-show-faces="true"  
   data-stream="true"  
   data-header="true"> 
</div>

So in your case, is there an issue with any other facebook plugins on the page interfering with that id?

share|improve this answer
This the only Fb plugin on the site – David Wolfe Jan 19 '12 at 1:17
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 23:17

"The behavior happens on two pages http://TheVillageCup.com and http://CarolinesVT.com"

You seem to be using AddThis which is made by a third-party.

Also I see no like box plugin being used on either URL you gave. The Addthis is displaying a like plugin of sorts, but it is not the like box plug in.

https://developers.facebook.com/docs/reference/plugins/like/

vs

https://developers.facebook.com/docs/reference/plugins/like-box/

You should contact the AddThis vendor to see why they've done what they've done.

share|improve this answer
I was told by my developer that he used the standard Fb API. I will bring this back to him. – David Wolfe Jan 19 '12 at 1:55
I just looked at the source and I see only the Fb like box.php. I don't see anything about a third party plugin – David Wolfe Jan 19 '12 at 2:03
Never mind I see the issue . You need to look at the community page. – David Wolfe Jan 19 '12 at 2:04
I get the like-box on the community page showing the Caroline's Fine Dining on facebook wether or not I'm logged into Facebook or not. How can I reproduce? – DMCS Jan 19 '12 at 3:20
It's clearer on the village cup site. The company page talksmabout the routes of American cuisine. The place page has my last checkin about chicken and waffles. Which page displays seems to based on whether one is logged in to Fb or not. When I get to my desk I'll post screen shots. – David Wolfe Jan 19 '12 at 21:24
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.