MyBB Community Forums

Full Version: Time Spent Online on Postbit [Plugin]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
Shows time spent online on postbit.

Download attachment and look at instructions in the readme file.

Screenshot:
[attachment=5819]

[attachment=5820]

Enjoy..
Thanks Big Grin
Cool Smile I suggest you put this up on the mods site.
thanks DragonFever
ikitikiT Wrote:Cool Smile I suggest you put this up on the mods site.

I already put it Wink
thanks!
looking good Smile
where is the template for this plugin as the Time Spent Online and Warning Level are on the same line so I need to move one of them down?
nice one...thank you
amywinehouseforum.co.uk Wrote:where is the template for this plugin as the Time Spent Online and Warning Level are on the same line so I need to move one of them down?

There is no "template" for it, it just adds the "Time Online" to the $post['userdetails'].
There's a <br /> missing because you have that "warning level" thing ... normally there's a <br /> at the end of the $post['userdetails'].

See if this works ...
Open the plugin and find

	$post['user_details'] = "{$post['user_details']}<font class=\"smalltext\">Spent Online: {$post['timeonline']}</font>";

Replace By

	$post['user_details'] = "{$post['user_details']}<br /><font class=\"smalltext\">Spent Online: {$post['timeonline']}</font>";
Pages: 1 2 3