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 saw many similar questions here but their answers don't work for me by some reasons. I need the share box, not the like one. Can anyone share a working solution?

Thank you very much


EDIT

The only working way I found is to add a link like:

<a href="http://www.facebook.com/sharer.php?u=http://www.mysite.com&t=Title" target="blank">Share on Facebook</a>

But in this case there is no counter and I need it. Is there a way to do it now?

share|improve this question

4 Answers

Much more nicer solution here: Facebook Feed Dialog

share|improve this answer

No more Share ... Facebook now only uses Like and Recommended

for that, go to the Developers Like page fill up and choose what you want, and press the Get code button, then simply add that code to the page :)

enter image description here

If the Like button is not what you want, try one of the Facebook Social plugins available out of the box.

share|improve this answer
I know that but it is not what we need – Burjua May 13 '11 at 14:36
what do you need then? there is no more Share, what are you trying to do, port to wall? For share deprecated button please read: blog.involver.com/2011/03/15/whats-happening-to-facebook-share – balexandre May 13 '11 at 14:37
I found the solution, check my answer. – Burjua May 13 '11 at 17:07

The share button has been deprecated in preference for the Like button. Probably best to keep up with the rest of the world and use Like instead of trying to implement the outdated Share.

I found this:

https://www.hs.facebook.com/note.php?note_id=10150211527410844

share|improve this answer
1  
Share box with a counter still works on thousands of sites and blogs. It is much better from marketing point of view so we want it. Thanks for advice anyway. – Burjua May 13 '11 at 14:40
Ok, thanks for the link, even though the solution from there is not working I found another one. – Burjua May 13 '11 at 17:07
up vote 0 down vote accepted

Ok, I found it here: http://www.simplebloggertutorials.com/2010/05/how-to-add-facebook-share-button-with.html

Just need to add following code:

<div>
   <a name="fb_share" type="box_count" expr:share_url="data:post.url" href="http://www.facebook.com/sharer.php">Share</a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script>
</div>

very easy solution and according to the link provided by Jarede Facebook will support Share button in the future.

share|improve this answer
1  
Careful with this, this is the same as Facebook Markup Language (FBML) witch Facebook already mention it a deprecated markup and you should use Javascript API, Graph API and/or the Social plugins! the sharer.php could be gone any minute and you will end up trying to find other solution. This is not a correct answer! – balexandre May 13 '11 at 19:18

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.