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.

I'm developing a WordPress plugin to show above or bottom the posts Facebook like and send buttons.

Unfortunately when is also activated a plugin for Facebook share button there is a Javascript error (FB.provide is not a function) and like and send buttons don't appear.

For example this happens in this page: http://www.pasqualepuzio.it/2011/04/plugin-facebook-like-and-send-button/

How can I solve this issue?

Thank you very much

share|improve this question

3 Answers

up vote 4 down vote accepted

I ´ve faced the same problem and it happens if you add the script twice on the site (http://connect.facebook.net/sv_SE/all.js)

share|improve this answer
it is funny, I have this only once in my page (not twice) and it is still showing the error commented by OP. – Junior Mayhé Mar 30 '12 at 13:39

I understood that part that we cant have all.js twice but I want to have Facebook Share Button and Facebook Like Button.

According to Docs, I need to include these two JS Files. https://connect.facebook.net/en_US/all.js http://static.ak.fbcdn.net/connect.php/js/FB.Share

Now, If I include both Firebug will give me same error "FB.provide is not a function". If I remove either of them then Like or Share button wont work.

I can do iFrame version but I have HTML Encoding issues with iFrame Version. I am programmatic generating HTML Response.

Any idea, how to approach?

share|improve this answer
They deprecated share in favor of like. – Matt Feb 28 '12 at 16:33
The Share button opens up a window pointing to: 'facebook.com/sharer/sharer.php'; with the querystring: '?u=[url-to-share]&src=sp', so I think we (=everyone who still wants to have a 'share' button) can simply implement it manually. Does anybody know what is the 'src=sp' for? – Yuval A. Apr 17 '12 at 14:17
facing the same prob. – Avi C Jun 3 '12 at 7:23

There is a workaround for this: instead of placing the javascript Fb.Share within the same page where you are loading the Javascript SDK, use an Iframe with the first and set it in the second.

share|improve this answer

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.