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 have the following code to show

  <iframe src="http://www.facebook.com/plugins/like.php?href=[mySite]"
                    scrolling="no" frameborder="0"
                    style="border:none; width:170px; height:80px"></iframe>

which works great but I wanted to see if i could customize it to:

  1. Not show which one of my friends like it. So instead of saying:

    Joe Thompson and 100 other people like this

I just want it to say:

100 people like this

basically I am trying to fit this like button in a small area of real estate on the page adn I want to have more certainly around what will show up

share|improve this question

2 Answers

up vote 1 down vote accepted

Unfortunately there's no way to https://developers.facebook.com/docs/reference/plugins/like/ change that line of text to read specifically how you want. It can be removed all together yet still show the like count if you change layout to button_count. However with this option, iframe is not available to use, so you'll need to change over to XFBML or HTML5.

share|improve this answer
are you saying this flexibility (to not show names but just the text 100 people like this) is available when using XFBML ? – leora Feb 20 '12 at 15:28
Unfortunately there's no way to developers.facebook.com/docs/reference/plugins/like change that line of text to read specifically how you want. – DMCS Feb 20 '12 at 17:38

you can use this one just change [Enter Your Page URL] with your URL

<iframe src="//www.facebook.com/plugins/like.php?[Enter Your Page URL]&amp;send=false&amp;layout=button_count&amp;width=100&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=arial&amp;height=21&amp;appId=201523196612824" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:21px;" allowTransparency="true"></iframe>
share|improve this answer
I want it to show "100 people like this". I just don't want it to show friends names – leora Feb 19 '12 at 2:39
yes you can see here there is parameter show_faces=false goes to facebook which will disable people faces or name and just show count, you just copy and paste with replacing your url. – Adeel Mughal Feb 19 '12 at 2:54
Sorry the names still appear with show_faces=false. Try it out on developers.facebook.com/docs/reference/plugins/like. – DMCS Feb 20 '12 at 14:41
where you are adding this... can you please show me.... – Adeel Mughal Feb 20 '12 at 15:26

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.