MyBB Community Forums

Full Version: Changing Order ?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

How I can change the order of Join date , etc ...

[Image: 0flzc.jpg]

For example I want to put Usertitle + Stars under the Avatar , how I can do that ? Huh Huh

thanks,and sorry for wasting your time Smile
ACP->Themes & Templates->Templates->Your Theme->Post Bit Templates->postbit_author_user.
Thanks dude Big Grin

{$lang->postbit_posts} {$post['postnum']}<br />
{$lang->postbit_joined} {$post['userregdate']}
{$post['replink']}{$post['warninglevel']}

Not really working , there is no stars , usertitle etc .. Sad
Check the postbit_classic template.
ACP > Templates & Styles > Templates > Your Template Name > Postbit Template > Postbit_classic
change this
		<span class="smalltext">
			{$post['usertitle']}<br />
			{$post['userstars']}
			{$post['groupimage']}<br>
			{$post['useravatar']}<br />
			{$post['user_details']}
		</span>
to this
		<span class="smalltext">
			{$post['useravatar']}<br />
			{$post['usertitle']}<br />
			{$post['userstars']}
			{$post['groupimage']}<br>
			{$post['user_details']}
		</span>