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 it possible to add a like button feature to your Facebook page which re-directs to another page and offers the user a free ebook?

I'm creating a website within MODx which runs via PHP.

share|improve this question
Try looking at this question to see if it will help you out. It would be a client side issue with the redirect, so more of a javascript thing than a PHP one ^^ – Jon Mar 15 at 7:43

closed as not a real question by Yogesh Suthar, Dipesh Parmar, zessx, Stony, Aleksandr M Mar 15 at 11:04

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 3 down vote accepted

For only like button:

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>


<div id="fblike">
  <div class="fb-like" data-href="site name" data-send="false" data-layout="button_count" data-width="100" data-show-faces="false"></div>
</div>

Redirect after clicking Like button:

This can be handled with the Facebook javascript event, edge.create:

FB.Event.subscribe('edge.create',
    function(response) {
        location.href = 'http://yourdomain.com/post/id';
    }
);

may this help you.

share|improve this answer
only like button he don't want. he want when someone click on that like button then download start – Sumit Bijvani Mar 15 at 8:08
@SumitBijvani i changed my answer.... – BANG Mar 15 at 10:26
@AdvaitAmin Cool thanks for that. But how do I hide the Facebook comment that appears? – Josh Mar 17 at 23:45

Not the answer you're looking for? Browse other questions tagged or ask your own question.