MyBB Community Forums

Full Version: Welcome Panel
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5
Like I said, I still need to update it for RC3. So I can't help you ATM.
this is what i see....

Warning: Missing template index_welcomepanel
Where?
Ok, I took a shot at trying to update it for RC4 on localhost, plus add an option to turn it off in the admin CP. This is what I got so far.

Attachments removed, an updated version can be found later in this thread.
Thanks for the effort. It is appreciated Smile
np, I have wanted it on my site since RC3, but it was never working properly, so I waited, and now im sick of waiting Toungue

Attachments removed, an updated version can be found later in this thread.
Quote:Seems to be a bug in myBB where everyone but registered users have titles, trying to find fix
Its not a bug. Registered users usertitles work of the usertitles system, which is why their title in the usergroups table is blank..
Attachments removed, an updated version can be found later in this thread.
if($mybbuser['usertitle'])
{
$query = $db->query("SELECT * FROM ".TABLE_PREFIX."usertitles WHERE posts<='".$mybbuser['postnum']."' ORDER BY posts DESC");
$usertitle = $db->fetch_array($query);
$title = $usertitle['usertitle'];
}
Attachments removed, an updated version can be found later in this thread.
Pages: 1 2 3 4 5