View Full Version : How do I change "Viewing Thread" to just "Viewing"?
Gutspiller
03-03-2003, 09:56 PM
Topic says it all really. I want to change in the whos online where it shows what people are viewing. I don't want it to say Viewing Thread blah blah, I want it to say Viewing blah blah.
Somebody help me with where to find it?
EchoHype.com
03-03-2003, 10:11 PM
ok this "should" work:
in online.php
find:
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing Thread <a href='showthread.php?s=$session[sessionhash]&threadid=$userinfo[threadid]'>".$thread[title][$userinfo[threadid]]."</a>";
}
break;
change to:
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing <a href='showthread.php?s=$session[sessionhash]&threadid=$userinfo[threadid]'>".$thread[title][$userinfo[threadid]]."</a>";
}
break;
find:
case 'showpost':
if (!$thread[title][$post[$userinfo[postid]]] || !$forum[canview][$thread[forumid][$post[$userinfo[postid]]]] || (!$forum[canviewothers][$thread[forumid][$post[$userinfo[postid]]]] && $thread[postuserid][$post[$userinfo[postid]]] != $bbuserinfo[userid])) {
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing Thread <a href='showthread.php?s=$session[sessionhash]&postid=$userinfo[postid]'>".$thread[title][$post[$userinfo[postid]]]."</a>";
}
break;
replace with:
case 'showpost':
if (!$thread[title][$post[$userinfo[postid]]] || !$forum[canview][$thread[forumid][$post[$userinfo[postid]]]] || (!$forum[canviewothers][$thread[forumid][$post[$userinfo[postid]]]] && $thread[postuserid][$post[$userinfo[postid]]] != $bbuserinfo[userid])) {
$userinfo[where] = "Viewing Thread";
} else {
$userinfo[where] = "Viewing <a href='showthread.php?s=$session[sessionhash]&postid=$userinfo[postid]'>".$thread[title][$post[$userinfo[postid]]]."</a>";
}
break;
I left in the just "Viewing Thread" as it'll just be "Viewing" with no url of any sort if they are, but the one that counts is the "viewing "url of thread+ name"
Let me know if it works! Make sure you make a backup ;)
Sebastian
03-04-2003, 06:27 AM
you're really picky aren't you :p ;)
just edit online.php as suggested.
Gutspiller
03-08-2003, 08:46 PM
Originally posted by Sebastian
you're really picky aren't you :p ;)
just edit online.php as suggested. Damn straight. I have probably over 200 hacks working on my forum. I want them to display EXACTLY what I want. :)
Now lets see if I can get this to work.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.