Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Thank you!There is no way to block any particular forum in its entirety.
The easiest solution is to start putting the OP on ignore. Especially the ones who seem to start the most threads.
So glad you asked that question! I’ll be happily blocking the noisiest of them.Thank you!The stuff there makes Facebook look like the Athenian Agora. Really takes away from the mood.
V sorry for this dumb question but is there any way to block the whole politics forum from the ‘new posts’ feed? Some of the stuff there is just…. ugh.![]()
Even the topic headline thingies are pretty vile sometimes.You don't have to go on the forum in the first place, so I don't understand why this is an issue.
I also want to block it. I find it strange that we’re on an erotic reading and community website where folks insist on explaining what they did on Facebook.V sorry for this dumb question but is there any way to block the whole politics forum from the ‘new posts’ feed? Some of the stuff there is just…. ugh.![]()
I am totally with you, sometimes when I take a break from here, part of it is because of the Politics Forum. The headlines makes me depressed and so many of them are just such horrible hateful people and it just breaks me.I also want to block it. I find it strange that we’re on an erotic reading and community website where folks insist on explaining what they did on Facebook.
It’s completely exhausting to not go 1 week without the news cycle blowing up.I am totally with you, sometimes when I take a break from here, part of it is because of the Politics Forum. The headlines makes me depressed and so many of them are just such horrible hateful people and it just breaks me.
Ventured through that section a few times and really regretted it.V sorry for this dumb question but is there any way to block the whole politics forum from the ‘new posts’ feed? Some of the stuff there is just…. ugh.![]()
// ==UserScript==
// @name Block Politics Board
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Hide the Politics Board section and any threads tagged with Politics Board
// @author V
// @match https://*forum.literotica.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function removePoliticsBoard() {
document.querySelectorAll('a').forEach(link => {
if (link.textContent.trim() === "Politics Board") {
let node = link.closest('.node');
if (node) node.remove();
}
});
let specificNode = document.querySelector('.node--id67');
if (specificNode) specificNode.remove();
}
function removePoliticsThreads() {
document.querySelectorAll('.structItem').forEach(item => {
if (item.querySelector('a[href="/forums/politics-board.67/"]')) {
item.remove();
}
});
}
function runAll() {
removePoliticsBoard();
removePoliticsThreads();
}
runAll();
const observer = new MutationObserver(runAll);
observer.observe(document.body, { childList: true, subtree: true });
})();
I was literally coming here to ask thisV sorry for this dumb question but is there any way to block the whole politics forum from the ‘new posts’ feed? Some of the stuff there is just…. ugh.![]()