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.

Is there any way to add a FaceBook Share Button to a static HTML page? I've implemented a simple web site with no server side, just a bunch of html pages and I was abble to add a Like button because it is implemented with iFrame element. I have searched for a solution regarding the Share Button before posting here, but can't really find anything.

(Example of a share button can be seen on a youtube web site, on share section of each video.)

Any help is appreciated.

share|improve this question

2 Answers

up vote 2 down vote accepted

You should be able to generate your own button code here: http://developers.facebook.com/docs/reference/plugins/like/

share|improve this answer
This page allows you to generate a like button which I was able to do. My problem is to get a Share Button which is different, it allows to users post a content from my page on their wall. – aumanets Mar 29 '11 at 20:53
3  
so you're looking to have people share it, not like it? Pass along parameters this way: facebook.com/sharer.php?u=http://google.com or whatnot - that'll scrape the page when you share your URL. – jpea Mar 29 '11 at 21:19
That's it. Thank you. – aumanets Mar 29 '11 at 22:06
It works in quite a strange way, it removes completely all the styling of the box and shows big Facebook logo, also when you click it it shows share dialog in fullscreen page, not in popup. Could you please share whole code? And what do you mean by whatnot? Thanks – Burjua May 13 '11 at 11:03
@Burjua the sharer.php link is just a bare link. there's no styled button involved. you would use it with standard HTML in an href tag. It just links you to a page on facebook that allows you to pass along 2 parameters about the page you're sharing: ?u=mylink.com&t=my+page+title - the title you specify only gets used if facebook can't scrape your page for more relevant info. most times, facebook will override what you put in the title parameter so it's almost easier to leave it out. – jpea May 13 '11 at 15:03
 <div class="fb_share">
     <a name="fb_share" type="box_count" share_url="<?php the_permalink() ?>"
       href="http://www.facebook.com/sharer.php">Partilhar</a>
     <script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script> </div> <?php }  }

 add_action('thesis_hook_byline_item','fb_share');
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.