MyBB Community Forums

Full Version: two User CP in One,plz help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
hi.
i've just installed theme that named risen gloss and found that there is problem in user cp page
it shows Your Account Summary
under that: Your Latest Threads
under that again a usercp page with site's header and after that personal notepad
please take a look at the image and please help
i cant figure it out aloneSad
Maybe you need to look at usercp template.
where exactly?
If you mean the location of the usercp template:
Admin CP -> Templates & Style -> Templates -> *The Name Of The Template* -> User Control Panel Templates -> usercp
ok
thats what i have

<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">
<tr>
<td class="thead" colspan="{$colspan}"><strong>{$lang->account_summary}</strong></td>
</tr>
<tr>
{$avatar}
<td class="trow2">
<span class="largetext">{$username}</span><br />
<strong>{$lang->postnum}</strong> <a href="search.php?action=finduser&amp;uid={$mybb->user['uid']}">{$mybb->user['posts']}</a> {$lang->posts_day}<br />
{$reputation}
<strong>{$lang->email}</strong> {$mybb->user['email']}<br />
<strong>{$lang->registration_date}</strong> {$regdate}<br />
<strong>{$lang->primary_usergroup}</strong> {$usergroup}<br />
{$referral_info}
</td>
</tr>
</table>
{$latest_subscribed}
{$latest_threads}
{$latest_warnings}
{$user_notepad}
</td>
</tr>
</table>
{$footer}
</body>
</html>
Post your usercp_notepad template here.
ok,there it is

<html>
<head>
<title>{$mybb->settings['bbname']} - {$lang->personal_notepad}</title>
{$headerinclude}
</head>
<body class="forums">
{$header}
<form action="usercp.php" method="post">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<table width="100%" border="0" align="center">
<tr>
{$usercpnav}
<td valign="top">
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead" colspan="2"><strong>{$lang->personal_notepad}</strong></td>
</tr>
</table>
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="fborder">
<tr>
<td align="center" class="trow1" width="100%">
<textarea name="notepad" cols="80" rows="15">{$mybb->user['notepad']}</textarea>
</td>
</tr>
</table>
<div align="center" class="tfoot" style="padding: 4px;">
<input type="hidden" name="action" value="do_notepad" />
<input type="submit" class="button" name="submit" value="{$lang->update_notepad}" />
</div>
</td>
</tr>
</table>
</form>
{$footer}
</body>
</html>
Revert the template.
i installed this theme 2 hourse ago and did not modify that Sad
Are you using MyBB 1.6?
Pages: 1 2