Quote:
Originally Posted by astdirect
It's difficult for me lol
I just want a way to share on facebook or twitter (facebook mainly) after you get a high score or to just share a game. I'd appreciate any help in simple terms if you have time of where to put like button so it shows in easy view on each game page perhaps ? 
|
in your skin_arcade.php
search for
Code:
function keys($game) {
global $ibforums;
return <<<EOF
<tr>
<td align="center" class="tcat">{$ibforums->lang['keys']}</td>
</tr>
<tr>
<td align="left" class="alt2">{$game['gkeys']}</td>
</tr>
EOF;
}
replace it with
Code:
function keys($game) {
global $ibforums;
return <<<EOF
<tr>
<td><div align='center' class='blockhead'>{$ibforums->lang['keys']}</div></td>
</tr>
<tr>
<td align="left" class="alt2">{$game['gkeys']}</td>
</tr>
<tr>
<td><div align='center' class='blockhead'>Share this Game On Facebook</div></td>
</tr>
<tr>
<td align="center" class="alt1" valign="top" style="width: 20%;padding-left:7px;padding-top:8px;padding-bottom:8px;">
<script>function fbs_click() {u=location.href;t=document.title;window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;}</script><style> html .fb_share_button { display: -moz-inline-block; display:inline-block; padding:1px 20px 0 5px; height:15px; border:1px solid #d8dfea; background:url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat top right; } html .fb_share_button:hover { color:#fff; border-color:#295582; background:#3b5998 url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat top right; text-decoration:none; } </style> <a rel="nofollow" href="http://www.facebook.com/share.php?u=<;url>" class="fb_share_button" onclick="return fbs_click()" target="_blank" style="text-decoration:none;">Share</a>
</td>
</tr>
EOF;
}
source
http://askville.amazon.com/add-Share...uestId=1539369
for facebook enable script (google is your friend ..) you can find twittter and other social network group the same way I did