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 am trying to configure a new conversion button that will like a facebook page. I found some code that does this, but I can't figure out the last step. Here is the code:

<style type="text/css">
#facebook_like_button_holder {
position:relative;
width:291px;
height: 74px;
color:#fff;
background: url('http://slingshotyou.com/wp-content/uploads/2012/09/cro.png');  
}

#facebook_like_button_holder iframe {
position:absolute;
top: 0px;
width: 291px !important;
}

#fake_facebook_button {
pointer-events: none;
display: none;
position:absolute;
width:291px;
height: 74px;
left:0;
top:0;
background: url('http://slingshotyou.com/wp-content/uploads/2012/09/cro.png');  
}

</style>

<div id="facebook_like_button_holder">
<fb:like href="http://www.slingshotyou.com/" layout="button_count" show_faces="false"  width="450" action="recommend"></fb:like>

<div id="fake_facebook_button"></div>
</div>


<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>

<script type="text/javascript">
FB.Event.subscribe('edge.create', function(response) {
window.location = "http://www.google.com/";
});

</script>

Basically, all I want is to make the "100 free conversions" button act like the like button, and I want the like button to be invisible.

Any help? Here is a link to a page where I am testing it live http://slingshotyou.com/bryants-experiment

share|improve this question
You are not allowed to mess with the like button layout by Facebook terms. If you want your own button layout, then use the built-in OG like action, developers.facebook.com/docs/opengraph/actions/builtin/likes – CBroe Sep 20 '12 at 9:20

migrated from wordpress.stackexchange.com Sep 20 '12 at 8:01

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.