My nigga @Philly you need to edit the mobile theme to add a My Threads and My Posts button.
Here is how a nigga does it:
ACP > Templates and Styles > Templates > MyBB GoMobile > Header > header > Enter code below
You're welcome.
Here is how a nigga does it:
ACP > Templates and Styles > Templates > MyBB GoMobile > Header > header > Enter code below
Code:
<a name="top" id="top"></a>
<div id="header">
<div id="panel">
{$welcomeblock}
</div>
<div id="logo">
<a href="{$mybb->settings['bburl']}/index.php">{$mybb->settings['gomobile_mobile_name']}</a>
</div>
<div id="menu">
<a href="{$mybb->settings['bburl']}/search.php?action=getnew">View New Posts</a>
<a href="search.php?action=finduserthreads&uid={$mybb->user['uid']}">My Threads</a>
<a href="search.php?action=finduser&uid={$mybb->user['uid']}">My Posts</a>
<a href="{$mybb->settings['bburl']}/search.php">Search</a>
</div>
</div>
<navigation>
<div id="container">
{$pm_notice}
{$bannedwarning}
{$bbclosedwarning}
{$unreadreports}
You're welcome.