MyBB Community Forums

Full Version: the duration a user stayed in the system
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
why is it that users can see other user's visit duration?

and how can i disable it?
i've looked under 'users' but could not find such setting..
Heart
thanks
Which duration are you referring to, the time spent online row on profiles, or the time on the who’s online list?
hi
i'm talking about the time user has spent that is being showed on profiles.
It's just a feature of MyBB. If you don't want it to show, you can remove this from the member_profile template:

<tr>
	<td class="trow1"><strong>{$lang->timeonline}</strong></td>
	<td class="trow1">{$timeonline}</td>
</tr>
May be worth to make this a usergroup option in ACP and/or a member setting.

Raised an official suggestion: https://community.mybb.com/thread-234821.html

[ExiTuS]
(2022-01-31, 05:41 PM)[ExiTuS] Wrote: [ -> ]May be worth to make this a usergroup option in ACP and/or a member setting.

Raised an official suggestion: https://community.mybb.com/thread-234821.html

[ExiTuS]

cool

(2022-01-31, 12:12 PM)Matt Wrote: [ -> ]It's just a feature of MyBB. If you don't want it to show, you can remove this from the member_profile template:

<tr>
	<td class="trow1"><strong>{$lang->timeonline}</strong></td>
	<td class="trow1">{$timeonline}</td>
</tr>

can you plase explain how do i do it?

is it a file that needs to be edited or something else?
ACP > Templates & Style > Templates > expand templates et for your theme > Member Templates > member_profile > remove that code above and save.