Ok, I have the tab removed unless you're an admin now.
Quote:
Originally Posted by Lynne
If they have no link to the page (since the tab is gone), then you shouldn't have to forward them because they really should never end up there in the first place.
|
Not sure what you mean here?
By default when you goto the website the CMS page is loaded, right now the tab isn't there when I'm logged out, but I'm still on the main CMS "The Front Page". If I don't forward someone to the forums page, what would I do?
Sorry, I just don't get how the logic works. =)
How do I deny them permission? Maybe that's the part I'm missing? What I'd really like to do is just get them to the forums seamlessly.
I created a plugin as so:
Code:
if (THIS_SCRIPT == 'vbcms') {
if (is_member_of($user,6) == true) {
echo("<!-- Is admin! -- >");
}
else {
echo("<!-- Is NOT admin! -- >");
}
}
Which works fine I just don't know what to do on the NOT admin part of the condition.