2013-05-26, 04:27 PM
2013-05-26, 04:32 PM
In postbit template find
and replace it with
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.
<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.
2013-05-26, 05:03 PM
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:
<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: