Online Status
Can anyone tell me how to hide online status of members posting on timeline while logged out?
-
- · John Curtis
- ·
Are you asking how long a member is showing to be online after logging out? If so that's Studio > Settings > Account. Then select "Online status".
-
No, I don’t want those who are not logged in to be able to tell if there are members online. I don’t have the splash page enabled. The public timeline is showing for everyone. The green dot shows on the avatar in the public timeline when a member is online for those that are not logged in.
-
i see what your saying. You might ask @LeonidS if he has some custom code to do that. Now you metion that I would like to see this enabled by default.
-
- · Ξx¢ΞL 2
- ·
i have the same question, at moment i see the only way to display them via CSS for the cards
-
- · unknown
- ·
Hello.. its better to just hide the timeline block for "unautheticated level"
-
- · Ξx¢ΞL 2
-
·
In reply to unknown
- ·
Hello.. its better to just hide the timeline block for "unautheticated level"
Problem is, when u need them for public content ...
-
-
·
LeonidS
- ·
Hi all!
If you need to hide the online status icon for the non-logged users you need to perform the following actions:
1) add the RAW block to the necessary page via the Studio->Pages app.
2) add there the code like:
<style>
.bx-base-pofile-unit-online {
display: none;
}
</style>
3) make this block visible only for the guests and place it to the beginning of all blocks on this page.
-
·
LeonidS
-
- · TimmyB
-
·
In reply to LeonidS
- ·
Thank you sir!
-
That worked well on my site. Thanks @LeonidS