Well I messed up the code up there a little but I have it all coded now.
I am trying to make it so guests can only view threads that have received replies within the last 24 hours.
The code I had above was just my guess at what I should do but I then tried that and it didn't work...
Do you know how I could do this?
Here's what I have for the time checker:
PHP Code:
$show=".gettemplate('postbit_guests').";
if ((time() - $thread[lastpost] >= 86400)) {
eval("\$show = \"".gettemplate('postbit_show')."\";");
}
$show is part of another hack that replaces the massage in the postbit with different things if the user is a guest.
https://vborg.vbsupport.ru/showthrea...threadid=51980
That's the hack I am trying to make this work with if that helps.
Thanks for any help.