Quote:
Originally Posted by Shill
What I am after is when you view a members stats and it shows there awards (if any) I would like to be able to click the image or the name of the game they are champion so that it takes me straight to the game.
I have looked at the code but I am wary of messing about with it.
Any help would be appreciated.
Thanks
Shill
|
Shill - go to Arcade.php - roughly around line 1376 (use Textpad ...
www.textpad.com ) and find this
Code:
$awardlist .= "<img src=\"$stylevar[imgdir_arcade]/".$award['miniimage']."\" border=0 align=\"absmiddle\"> ";
replace it with this
Code:
$awardlist .= "<a href=\"arcade.php?do=play&gameid=".$award['gameid']."\"><img src=\"$stylevar[imgdir_arcade]/".$award['miniimage']."\" border=0 align=\"absmiddle\"></a> ";
I think that should do as you want ... any problems , please let me know