MyBB Community Forums

Full Version: How to change Time Spent Online to text for a user?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
So how would i go about doing this?
Do you mean on the profiles? The time online section? It already is text I thought.
(2014-04-15, 09:02 AM)Leefish Wrote: [ -> ]Do you mean on the profiles? The time online section? It already is text I thought.
It is but i want to change the online time to text for example
Time Spent Online:Forever etc Big Grin
Replace the variable:
{$timeonline}

with your text in 'member_profile' template.
(2014-04-15, 10:52 AM)effone Wrote: [ -> ]Replace the variable:
{$timeonline}

with your text in 'member_profile' template.
Only want to change it for one user ?
Use Template conditionals.
(2014-04-15, 10:58 AM)Leefish Wrote: [ -> ]Try template conditionals.

http://mybbhacks.zingaburga.com/showthread.php?tid=464
How would i do this I'm not a expert at php etc?
Read the linked thread. There is an entire forum on how to use template conditionals.
Something like:

<if $mybb->user['uid'] == 1 then>
Your text here
<else>
$timeonline
</if>

1 is the target user id, change as needed.
Pages: 1 2