Use google plusone button (not share button) in a newsletter

139 views Asked by At

Good morning folks. I try to implement the Google "+1" button into a newsletter (they are also as static web version available) but I can't use javascript here.

Is there any way to do this without javascript? It's also possible to share a page via a static url from google:

https://plus.google.com/share?url=your-page-url

Thanks in advance

2

There are 2 answers

0
abraham On

No. The JavaScript button is the only supported method of +1'ing a URL. You can add a feature request.

2
Jonas Grumann On

I think you answered your own question by adding that link. You'll have to create a "+1" image and embed it in your newsletter (remember to host the image on your servers and link it from there). Example:

<a href="https://plus.google.com/share?url=your-page-url">
    <img src="http://www.yoursite.com/images/plusone.jpg" />
</a>

where your-page-url is your page url (http://www.yourpace.com)