MyBB Community Forums

Full Version: UserCP - Custom usertitle gives error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
i have a custom usertitle on myself and it appears in its box whenever i update my usercp.

but for some reason it keeps saying its too long, and the only way to continue is by removing it from the box, (which is ok, it doesn't change it anyway.)

just wondering if this is a bug or theres a setting i can fix here? something to change?
What version of MyBB do you use?
1.1.1? the latest.
Link to your forum please?
Your usercp_profile_customtitle template is outdated. You need to get an updated version from a vanilla 1.1.1 installation.
um, can't i just create a new template set then copy-paste it in?

edit... guess not.

i wonder what else is outdated in my templates..

almost everything says it has been modified...

it didn't before though

ok, updated that template, but still get a user title too long message
Try this:

<fieldset class="trow2">
<legend><strong>$lang->custom_usertitle</strong></legend>
<table cellspacing="0" cellpadding="$theme[tablespace]">
<tr>
<td><span class="smalltext">$lang->custom_usertitle_note</span></td>
</tr>
<tr>
<td><span class="smalltext">$lang->default_usertitle</span></td>
</tr>
<tr>
<td><span class="smalltext"><strong>$defaulttitle</strong></span></td>
</tr>
<tr>
<td><span class="smalltext">$lang->current_custom_usertitle</span></td>
</tr>
<tr>
<td><span class="smalltext"><strong>$user[usertitle]</strong></span></td>
</tr>
<tr>
<td><span class="smalltext">$lang->new_custom_usertitle</span></td>
</tr>
<tr>
<td><input type="text" name="usertitle" size="25" value="" maxlength="$settings[customtitlemaxlength]" /></td>
</tr>
</table>
</fieldset>
<br />
ok but im pretty sure thats whats in that mybb theme.xml in the install folder..
It may very well be, but that wasnt the point. Did you try it?
Pages: 1 2