MyBB Community Forums

Full Version: User CP problems.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
User CP
http://www.fbb.net/forum/usercp.php

How can I make that like the normal User CP (with narrow menu)? It seems like I just need to add something to the Menu, but I don't know what to add.

Thanks for the help. Smile
whoa, we can't access to usercp remember... try posting a screenshoot
[Image: shotusercp7so.png]
did u add some mod recently?? or do you change something on the User Cp template??

please post you User CP template
<html>
<head>
<title>$lang->user_cp</title>
$headerinclude
</head>
<body>
$header
<table width="100%" border="0" align="center">
<tr><td>$usercpnav</td>
<td valign="top">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" class="tborder">
<td class="thead" colspan="$colspan"><strong>$lang->brief_summary</strong></td>
</tr>
<tr>
$avatar
<td class="trow1" width="50%"><strong>$lang->username</strong></td>
<td class="trow1" width="50%">$mybbuser[username]</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>$lang->primary_usergroup</strong></td>
<td class="trow2" width="50%">$usergroup</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>$lang->registration_date</strong></td>
<td class="trow1" width="50%">$regdate</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>$lang->postnum</strong></td>
<td class="trow2" width="50%">$mybbuser[postnum] $lang->posts_day</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>$lang->email</strong></td>
<td class="trow1" width="50%">$mybbuser[email]</td>
</tr>
</table>
$reputations
</td>
</tr>
</table>
$footer
</body>
</html>

In addition, Private Messages, Profile, etc appear below the navigation, instead of on the side. Sad
try replacing the code with this:

<html>
<head>
<title>$lang->user_cp</title>
$headerinclude
</head>
<body>
$header
<table width="100%" border="0" align="center">
<tr>
$usercpnav
<td valign="top">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" class="tborder">
<td class="thead" colspan="$colspan"><strong>$lang->brief_summary</strong></td>
</tr>
<tr>
$avatar
<td class="trow1" width="50%"><strong>$lang->username</strong></td>
<td class="trow1" width="50%">$mybbuser[username]</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>$lang->primary_usergroup</strong></td>
<td class="trow2" width="50%">$usergroup</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>$lang->registration_date</strong></td>
<td class="trow1" width="50%">$regdate</td>
</tr>
<tr>
<td class="trow2" width="50%"><strong>$lang->postnum</strong></td>
<td class="trow2" width="50%">$mybbuser[postnum] $lang->posts_day</td>
</tr>
<tr>
<td class="trow1" width="50%"><strong>$lang->email</strong></td>
<td class="trow1" width="50%">$mybbuser[email]</td>
</tr>
</table>
$reputations
</td>
</tr>
</table>
$footer
</body>
</html>
Finally, I got it!!!

Thanks for the effort. Wink