MyBB Username Panel not working

Status
Not open for further replies.

majest13

New Member
Messages
23
Reaction score
0
Points
1
Forum Link: http://majestic.elementfx.com/forum
Forum Software: MyBB 1.8.7

When I click my username on my forum, it does nothing. It should have a dropdown menu with links to user cp, admin cp, logout.

Here is the code in header_welcomeblock_member:
HTML:
<div class="user_menu">
    <ul>
        <li><span class="pms">{$mybb->user['pms_unread']}</span><a href="{$mybb->settings['bburl']}/private.php"><i class="fa fa-envelope fa-fw icon" title="Messages"></i></a></li>

        <li>
            <img class="panelavatar" style="vertical-align: top; margin-top: 5px;" src="{$mybb->user['avatar']}" height="26" width="26">

            <div class="enmenuwrap">
                <span class="enmenu">{$mybb->user['username']}<i class="fa fa-caret-down fa-fw icon"></i></span>
                <div class="ensettings">
                    <ul>
                        {$modcplink}
                        {$admincplink}
                        <li id="title"><i class="fa fa-star" aria-hidden="true"></i> My stuff</li>
                        <li><a href="{$mybb->settings['bburl']}/member.php?action=profile">My profile</a></li>
                        <li><a href="{$mybb->settings['bburl']}/search.php?action=finduser&uid={$mybb->user['uid']}">My posts</a></li>
                        <li><a href="{$mybb->settings['bburl']}/search.php?action=finduserthreads&uid={$mybb->user['uid']}">My topics</a></li>
                        <li id="title"><i class="fa fa-cog" aria-hidden="true"></i> Settings</li>
                        <li><a href="{$mybb->settings['bburl']}/usercp.php">User settings</a></li>
                        <li><a href="{$mybb->settings['bburl']}/usercp.php?action=avatar">Profile picture</a></li>
                        <li><a href="{$mybb->settings['bburl']}/member.php?action=logout&amp;logoutkey={$mybb->user['logoutkey']}">Log out</a></li>
                    </ul>
                </div>
            </div>
        </li>
 
    </ul>
</div>
 

Attachments

  • screenshot.png
    screenshot.png
    12.5 KB · Views: 1
Last edited:

majest13

New Member
Messages
23
Reaction score
0
Points
1
I even tried making a copy of the theme (from the theme creators) for testing, still doesn't work.
 

caftpx10

Well-Known Member
Messages
1,534
Reaction score
114
Points
63
This would be the reason.
VVVvEOr.png

Quick edit: it seems that the files do actually exist. Perhaps it is server-side caching gone wrong or mod_security2 being a little odd with the set rules.
Whatever it was, it works now..
 
Status
Not open for further replies.
Top