MyBB Community Forums

Full Version: Remove user rank from showthread
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys I'm trying to remove the user rank that appears under their name on show thread.php.

Thanks everyone Smile
ACP > Templates & Style > Templates > (click your theme's templates) > Postbit Templates.
In the templates 'postbit' and 'postbit_classic', remove:
{$post['usertitle']}
Its User title. ACP > Users and Groups > Groups > Edit the group which that user belongs > and Under "Users and Permissions" tab Untick "Can use custom user titles?" option.
1. Go to Admin CP > Templates & Style > Templates > Your Template Set > Post Bit Templates > postbit.

2. Find:

<span class="smalltext">
	{$post['usertitle']}<br />
	{$post['userstars']}
	{$post['groupimage']}
</span>

3. Replace with:

<span class="smalltext">
	{$post['userstars']}<br />
	{$post['groupimage']}
</span>
Thanks guys

ACP > Templates & Style > Templates > (click your theme's templates) > Postbit Templates.
In the templates 'postbit' and 'postbit_classic', remove: {$post['usertitle']}

did it!