Im having an issue, im trying to make last seen online use a hook instead of having to edit the postbit_legacy template everytime. However this always fails to work. Anyone know why?
Code:
<plugin active="1" executionorder="5">
<title>lastseenonline postbit</title>
<hookname>postbit_userinfo_right_after_posts</hookname>
<phpcode><![CDATA[
$lastseenonlinepostbit = '
<if condition="$show['last_seen_online']"><div>$vbphrase[last_seen_online]: $post[lastseen_date] $post[lastseen_time]</div></if>
';
$template_hook['postbit_userinfo_right_after_posts'] .= $lastseenonlinepostbit;
]]></phpcode>
</plugin>