Quote:
Originally Posted by Lombardo
Is there a way to put the name above join date?
|
You just need to add a new template hook. I used
Code:
$template_hook[postbit_userinfo_right_above_posts]
and then edited my postbit_legacy template:
Code:
<div class="smallfont">
<br />
<if condition="$post['joindate']"><div>$vbphrase[join_date]: $post[joindate]</div></if>
<if condition="$post['field2']"><div>$vbphrase[location_perm]: $post[field2]</div></if>
$template_hook[postbit_userinfo_right_above_posts]
<if condition="$post['age']"><div>$vbphrase[age]: $post[age]</div></if>
I then edited the plugin to change the template hook to the new one:
Code:
if ($post['field6'])
{
$template_hook['postbit_userinfo_right_above_posts'] .= '<div>' . $vbphrase['real_name'] . ': ' . $post['field6'] . '</div>';
}
If you want the real name to appear above the join date, just move the new template hook to after the <br />. You can do the same with the postbit template. This is
not a difficult process: you just need to insert the new template hook wherever you want it (one line of code) and then edit the plugin (the same one line to replace the current template hook). That's it.