I've been trying to mess around with init.php with no luck.
I'm trying to accomplish the following:
Keep all user profile urls at the default setting
(user/:username)
EXCEPT if the usernames are "Admin" and "Bob" for example.
Ie.
if($username == "Admin" || $username == "Bob")
{
only display THESE profiles as ':/username' instead of 'user:/username' for everyone
}
else
{
display every other profile as 'user:/username' for everyone
}
Can anyone help???
Thank you!! :))