-
Hi @LeonidS
My initial intention was to prevent unauthenticated users from seeing the image, and you showed me how to do that.
What I want to know is what I should change in the script if I want them to not see any content posted by "update"—that is, a link, a video, a file, an image.
Thanks.
-
To hide the attachments form the "Update" (Timeline) area you may use the same code with the "#bx-timeline-main-timeline-feed .bx-tl-item-attachments" selector. For the links you may use smth like:
<script> $("#bx-timeline-main-timeline-feed .bx-tl-item-attachments").remove(); </script> -
Thanks @LeonidS I'll try.
-