Hello,
How I can change the order of Join date , etc ...
For example I want to put Usertitle + Stars under the Avatar , how I can do that ?
thanks,and sorry for wasting your time
ACP->Themes & Templates->Templates->Your Theme->Post Bit Templates->postbit_author_user.
Thanks dude
{$lang->postbit_posts} {$post['postnum']}<br />
{$lang->postbit_joined} {$post['userregdate']}
{$post['replink']}{$post['warninglevel']}
Not really working , there is no stars , usertitle etc ..
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>