_________________
Backup files BEFORE altering
Use PHPNuke 7.6 with patches!!
No private messages please, POST in forums.
Gaurav Captain
Joined: Oct 13, 2003
Posts: 317
Posted:
Thu Oct 23, 2003 8:33 pm
thanx, it works very well
roze Nuke Soldier
Joined: Jan 24, 2004
Posts: 17
Location: Morristown, NJ, USA
Posted:
Sat Jan 24, 2004 6:00 am
Hello! I put that block of code into my header where I wanted it, and it's just showing:
Hello ! [Logout]
regardless of whether or not i'm logged in as admin, regular user, or not logged in at all.
I tried to put this code into my modified version of the ExtraLite theme, and I'm assuming there's some kind of global or definition i'm missing. There are no errors, so I dont think it's huge...
would someone be kind enough to tell me what I'll have to add into my theme.php and where to get this to work?
My eventual goal is:
Welcome, Name! [Logout] (if they're logged in)
and
Welcome, Anonymous [Login or Register] (My login/new user registration page are the same)
I'm not so great with php, mysql, but I've done pretty well modifying theme.php so I think I just need a push in the right direction.
Thank you, nuke guys, you are incredible!
roze Nuke Soldier
Joined: Jan 24, 2004
Posts: 17
Location: Morristown, NJ, USA
Posted:
Sat Jan 24, 2004 7:19 pm
Ahh - I actually managed to fix it myself... i refered to one of my login/logout blocks and changed anything that was $content to echo
I dont think this is the slickest piece of code ever, but it works well, and it's super customizable. I didn't use any language files, just hard coded the text. My site is in english only.
if (is_user($user)) {
$memname = $cookie[1];
echo "<big><br>Hello, <b>$memname</b>! [<a href=\"modules.php?name=Your_Account&op=logout\"><big>Logout</big></a>]<br></big>";
}
else {
echo "<big><br>Welcome, <b>Anonymous</b>! [Click <a href=\"http://www.tubanews.com/modules.php?name=Your_Account\"><big>here</big></a> to Login or Register]</big>";
}
You can see it in action on my site, right above the right blocks.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum