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 want a simple Like button. How can I obtain that. I don't want any viewcount nor people displayed besides my like button.

share|improve this question
1  
i use layout button_count, does not show faces but does show a simple count on the right hand side. NOTE: you can not modify the button in the DOM for violation of Facebook Usage Terms. – Shawn E Carter Oct 13 '11 at 22:13

2 Answers

up vote 2 down vote accepted

Your best bet may be to use the Facebook like button code generator and:

  1. Set the Layout Style to button_count
  2. Uncheck the Send Button option
  3. Uncheck the Show Faces option

Hope this helps!

share|improve this answer

Shorter answer: Use:

data-layout="button_count"

in your element. This will display '0' rather than the longer prompt. There is unfortunately no way to display nothing at beside the button, however you can use CSS/JS tricks to hide the count.

This could be as simple as:

$('div.fb-like').width(48).css({'overflow':'hidden'}) 

but see the question linked above for more detailed information.

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.