PDA

View Full Version : Mini Mods - Best Way To Show Google +1 In Forum


VBIran
06-13-2011, 10:00 PM
Hi,

We suggest you to use this way to show your G+1 In all of pages with best Efficiency .

Example For RTL Forum :

http://im.gg/uploaded/14062011-834541.png

Step 1 :

Go to this link : http://www.google.com/webmasters/+1/button/ And get your button .

Dont forget to put your site link in advanced settings .

You may get something like this :

<!-- Place this tag in your head or just before your close body tag -->
<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>


<!-- Place this tag where you want the +1 button to render -->
<g:plusone href="www.vbulletin.org"></g:plusone>


Step 2 :

First put <script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script> In headinclude template After this code <script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/vbulletin-core.js?v={vb:raw vboptions.simpleversion}"></script>

Step 3 :

Then put This code In the very very top of the header template :


<style type="text/css">
.kadr {
background:#f9fbfc;
border:1px solid #d7dee3;
color:#7f663a;
font-size:11px;
line-height:22px;
padding-top: 3px;
padding:5px 14px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
text-align:left;
}
</style>
<div class="kadr" style="position:fixed;left:2px;bottom:2px;z-index:1000;">
+1 Us On Google :
<g:plusone href="www.vbulletin.org"></g:plusone>
</div>


You'r Done .

If you enjoy this quick mod Mark as Installed (https://vborg.vbsupport.ru/vborg_miscactions.php?do=installhack&threadid=265192) .

Good luck

whitedd
06-14-2011, 09:42 PM
great...installed and nominated ;)

nitra1000
06-14-2011, 10:37 PM
Forgive me but doesn't the href attribute fix which page is plussed? I.e you can only plus vbulletin.org with your example code

Dr.osamA
06-15-2011, 02:19 AM
thank you bro

installed

VBIran
06-15-2011, 03:23 AM
you can only plus vbulletin.org with your example code

You must get your code from google webmaster site and change the url .

vbulletin.org in code is just for example .

sadiq6210
06-15-2011, 10:18 AM
Thanks brother

Installed

nitra1000
06-15-2011, 10:46 AM
You must get your code from google webmaster site and change the url .

vbulletin.org in code is just for example .

Yes it is just an example but the url you plus is static yes?

MikeF
06-15-2011, 02:32 PM
Alternative to save yourself some time:

showthread


Remove:
<vb:if condition="$show['fb_likebutton']">
{vb:raw fblikebutton}
</vb:if>

Replace:

<vb:if condition="$show['fb_likebutton']">
<table width="100%" border="0">
<tr>
<td>{vb:raw fblikebutton}</td>
<td align="right"><g:plusone size="medium"></g:plusone></td>
</tr>
</table>
</vb:if>
footer

Add to very end:

<script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>