MyBB Community Forums

Full Version: User bit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to do this:

[Image: Untitled.png]

I need the code, and where to put it. Thanks!
In postbit template find

<td class="post_author">
							<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
							<span class="smalltext">
								{$post['usertitle']}<br />
								{$post['userstars']}
								{$post['groupimage']}
							</span>
						</td>
						<td class="smalltext post_author_info" width="165">
							{$post['user_details']}
						</td>

and replace it with

<td class="post_author" width="250px">
							<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
							<span class="smalltext">
								{$post['usertitle']}<br />
								{$post['userstars']}
								{$post['groupimage']}
							</span>
						</td>
						<td class="smalltext post_author_info">
							{$post['user_details']}
						</td>

That area that you highlited in your image is outputed by {$post['user_details']} variable that is used to call postbit_author_user (or postbit_author_guest if the user is guest) template.
My code is: [code]<td class="post_author" width="250px">
<strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
<span class="smalltext">
{$post['usertitle']}<br />
{$post['userstars']}


</span>


</td>
<td class="smalltext post_author_info">
<span class="smalltext">
{$post['user_details']}
</td>[\code]

And it looks like: