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.

The Facebook like button posts to a Facebook wall, but when yuo click the link on the facebook wall it just goes to my 404 error page, rather than to the product page that has been liked.

This is the code I am using, any help greatly appreciated!

<td><fb:like send="false" width="90" layout="button_count" show_faces="true" /></td>
<script>
window.onload = function() {  
var currentURL = window.location;
if(currentURL.href.indexOf('?fb_action_ids=')>-1){                         window.location.href=currentURL.protocol    +'//'+currentURL.host+currentURL.pathname;              
  }
 }
</script>

</div></td>

  </tr>
 </table>
</div>
<div id="fb-root"></div>
 <script>
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.