MyBB Community Forums

Full Version: How to remove (viewing profile...) from profile?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In the member profile, I want to keep the online status part but the part where it says "(Viewing Profile of membername @ 11:45 PM)" I want to remove this.

Does anybody have any idea on how to do this?

Thanks
Remove
<strong>{$lang->postbit_status}</strong> {$online_status}
from your member_profile template.
Sorry if I wasn't being clear.

Right now it says
Status: Online (Viewing Profile of membername @ 01:31 AM)

I actually like the part where it says Online. I want to delete the stuff afterwards, so it will just say "Status: Online".

If I delete the whole line, "<strong>{$lang->postbit_status}</strong> {$online_status}", I will end up getting rid of Online as well.

Anyway around this?

Anybody know?
(I know this is a very old thread, but is still listed first in the search results for {$online_status}, so I'll post the solution to get this topic solved.)

To remove the part that says (Viewing Profile of membername @ 01:31 AM) you have to edit the member_profile_online template.

Instead of
<a href="online.php">{$lang->postbit_status_online}</a> ({$location} @ {$location_time})

we only need
<a href="online.php">{$lang->postbit_status_online}</a>