GARS + Digg

carney

New Member
Hey there, i am wondering if anyone knows how i can intergrade a Digg button into my GARS!

i don't care how and where just as long as the digg is on the viewing tutorial page!

Cheers!
 
Edit GARS_tools under GARS templates
Find:
Code:
<if condition="$show['reportlink']">
                <tr>
                <td class="alt1active" style="white-space: nowrap;font-size: 8pt;">
                        <img class="inlineimg" src="$stylevar[imgdir_button]/report.gif" border="0" alt="" /> <a href="report.php?$session[sessionurl]p=$post[postid]" rel="nofollow">$vbphrase[report_bad_post]</a>
                </td>
            </tr>
        </if>

And add under:
Code:
<tr>
                <td class="alt1active" style="white-space: nowrap;font-size: 8pt;">
                        <img class="inlineimg" src="http://www.LOCATION OF IMAGE/digg.gif" border="0" alt="" /> <a href="http://digg.com/submit?phase=2&url=$vboptions[bburl]/showthread.php?t=$threadid&title=$thread[title]" rel="nofollow" target="_blank">Digg This!</a>
                </td>
            </tr>
 
Back
Top