Quote:
Originally posted by futureal
The hack assumes that in your vBulletin Options section, the value of "URL" is in the "http://www.yoursite.com/somedir" format. If you are having problems, make sure the URL is set up in that format and it should work OK.
|
That would explain it, my forums are in the root of the domain:
http://forums.ukwnetwork.com so there is no directory on the end
Also I have made this change in the bit of code for fuctions.php so that I can place the text for Game Champ anywhere in the postbit, not just under the usertitle, just place $post[arcade] in the postbit template.
PHP Code:
// Start vbProArcade
// do vbProArcade champ system
if ($vpa_champs != 0) {
$post[arcade]="";
for ($vpa = 0; $vpa < count($vpa_champs); $vpa++) {
if (($vpa_champs[$vpa][championid] == $post[userid]) && ($vpa_champs[$vpa][championactive] == 1)) {
$post[arcade] .= "<br><b>"
.iif($vpa_champs[$vpa][championcolor] != "","<font color=\"".$vpa_champs[$vpa][championcolor]."\">","")
.$vpa_champs[$vpa][championtext]
.iif($vpa_champs[$vpa][championcolor] != "","</font>","")."</b>";
}
}
}
// End vbProArcade