MyBB Community Forums

Full Version: Usernames not clickable in Private Messages Inbox
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Seems as if I can not click usernames anymore in the inbox for PMs. Could possibly be a template error?

Private template:

<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->private_messaging}</title>
{$headerinclude}
</head>
<body>
{$header}
<form action="private.php" method="post" name="pmForm">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
{$limitwarning}
<div class="popup-menu-pm clearbb">
<div class="popup-pm">
<input name="allbox" title="{$lang->check_all}" type="checkbox" class="checkbox checkall input_pm input_check" value="{$lang->check_all}" />
</div>
   <div class="popup-pm">
<a href="javascript:;" id="pm_filter"><i class="fa fa-filter" aria-hidden="true"></i></a>
<div id="pm_filter_popup" class="popup_menu" style="display: none;">
<div class="popup_item_container">
<a href="private.php?fid={$folder}&amp;sortby=subject&amp;order=asc">{$lang->message_title}</a>
</div>
<div class="popup_item_container">
<a href="private.php?fid={$folder}&amp;sortby=username&amp;order=asc">{$sender}</a>
</div>
<div class="popup_item_container">
<a href="private.php?fid={$folder}&amp;sortby=dateline&amp;order=desc">{$lang->date_sent}</a>
</div>
</div>
   </div> 
<div class="popup-pm">
<input type="submit" name="delete" value="&#xf014;" class="input_pm">
</div>
</div>
<div class="float_right search_inboxpm">
<input type="text" name="keywords" value="{$lang->enter_keywords}" onfocus="if(this.value == '{$lang->enter_keywords}') { this.value = ''; }" onblur="if(this.value=='') { this.value='{$lang->enter_keywords}'; }" class="textbox" size="25" />
<input type="submit" class="button input_pm" name="quick_search" value="&#xf002;" />
</div>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="6">
<div class="float_right">
<a href="private.php?action=advanced_search" class="button_forumdisplay"><i class="fa fa-question"></i></a></div>
<strong>{$foldername}</strong></td>
</tr>
{$messagelist}
<tr>
<td class="tfoot" colspan="6">
<span class="float_left">
<input type="submit" class="button" name="moveto" value="{$lang->move_to}" /> {$folderoplist}
</span>
<span class="float_right pm_multipage">{$multipage}</span>
</td>
</tr>
</table>
<input type="hidden" name="action" value="do_stuff" />
</form><br />
</div>
<div>
<div id="sidebars" class="sidebar-cp sidebar-cp-ui">{$usercpnav}</div>
{$footer}
<script type="text/javascript">
if(use_xmlhttprequest == "1")
{
$("#pm_filter").popupMenu();
}
</script>
</body>
</html>

Website: https://onecrypto.net/
Still need help
if you are using style user names plugin then can you temporarily disable it & check whether it helps
(2016-09-21, 05:59 AM).m. Wrote: [ -> ]if you are using style user names plugin then can you temporarily disable it & check whether it helps

Yep that was the issue. How can I fix it so it works with the plugin?