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 to use facebook Like button and Google+ badge on my website. I added this code for this purpose:

<table align='right'>
    <tr>
        <td align='right'>
        <div class="fb-like" data-href="https://www.facebook.com/RideForHealth" data-send="true" data-layout="box_count" data-width="100" data-show-faces="true"></div>

        </td>
        <td>
        <g:plus href="https://plus.google.com/107539471286877449345" rel="publisher" width="300" height="131" theme="light"></g:plus>
        </td>

    </tr>
</table>

But this is not working. I click on buttons but nothing happens. When I remove the HTML table, both work perfectly alright. Here is the website for which I am using this.

share|improve this question

2 Answers

I would say try this plugin for google badge

i am using it on my wordpress its working for me..

http://wordpress.org/extend/plugins/kd-google-plus-badge/

share|improve this answer

I think you forget to add this js in your head...


  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
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.