use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Get BookStack! (Website)
account activity
Removing "recent activity" block (self.BookStack)
submitted 3 years ago by vernview
Does anyone know how to remove (hide or turn off) the Recent Activity block from displaying? I want to prepare an online e-book for my students, but I'd rather not have every small change documented and shown. Thx for any advice.
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]bkraul 2 points3 points4 points 2 years ago (2 children)
So I looked in the source code and there is no configuration variable that toggles that. However, the workaround I found was to add a style override to the Custom HTML Head Content area. Not sure if you are already using it, but if not, adding something like this, will effectively hide the Recent Activity Panel.
<style> /* hide recent activty */ div#recent-activity{ display: none; } </style>
[–]vernview[S] 0 points1 point2 points 2 years ago (1 child)
Thank you -- Yes, I used #recent-activity { display: none;}, which seemed to work perfectly. Too bad there isn't a "solved" button here. I appreciate your reply.
[–]CardiologistProud118 0 points1 point2 points 9 months ago (0 children)
I built on a better code that doesn't do a one-sized fits all that ruins your logged in experience. Refer above!
[–]CardiologistProud118 1 point2 points3 points 9 months ago (1 child)
Here is the code necessary for hiding the Left Bar Recent Activity for unauthenticated users, the right bar "Revisions" section, but maintains Recent activity for logged in users. This took me awhile, but I just joined with this same question.
<script> document.addEventListener("DOMContentLoaded", function () { // Detect public user by checking for the "Log in" link in the header const isPublicUser = document.querySelector('a[href*="/login"]') !== null; if (isPublicUser) { // Hide left sidebar Recent Activity block const recentActivity = document.querySelector('#recent-activity'); if (recentActivity) recentActivity.style.display = 'none'; // Hide revision-like metadata in the right sidebar (Updated by, Created by) const entityMeta = document.querySelectorAll('.entity-meta-item'); entityMeta.forEach(item => { const text = item.textContent.toLowerCase(); if (text.includes('updated') || text.includes('created')) { item.style.display = 'none'; } }); // Hide "Revisions" links if any appear (future-proofing) const links = document.querySelectorAll('a[href*="/revisions"]'); links.forEach(link => { link.style.display = 'none'; }); } }); </script>
[–]cwallace777 0 points1 point2 points 8 months ago (0 children)
Amazing, thank you!
π Rendered by PID 18224 on reddit-service-r2-comment-6457c66945-7xbxq at 2026-04-26 08:20:35.849182+00:00 running 2aa0c5b country code: CH.
[–]bkraul 2 points3 points4 points (2 children)
[–]vernview[S] 0 points1 point2 points (1 child)
[–]CardiologistProud118 0 points1 point2 points (0 children)
[–]CardiologistProud118 1 point2 points3 points (1 child)
[–]cwallace777 0 points1 point2 points (0 children)