@Bubbelvatten
To re-iterate the ‘unable to enforce’ I just want to mention, again, that there is literally no button for this. This is not a problem that moderation can help with - it requires a code change.
And, again, the problem is known and the dev team is working on it.
In the meantime, try this (also applicable to
@Lunarmoon21’s question):
-
Install TamperMonkey or whatever extension you trust that works with your browser.
-
To block all advertisements, create and activate this script:
(function() {
‘use strict’;
document.querySelectorAll(‘#imagespns’).forEach(el => el.style.display = ‘none’);
})();
Ads will disappear.
- To block specific users, use this:
(function() {
‘use strict’;
document.querySelectorAll(‘a[href=”/profiles/Lunarmoon21”]’).forEach(el => el.style.display = ‘none’);
})();
Where Lunarmoon21
is the name of the profile whose posts and comments you want to block.
- To hide both (or more):
(function() {
‘use strict’;
// Hide the div with id “imagespns”
document.querySelectorAll(‘#imagespns’).forEach(el => el.style.display = ‘none’);
// Hide the link to “Lunarmoon21”
document.querySelectorAll(‘a[href=”/profiles/Lunarmoon21”]’).forEach(el => el.style.display = ‘none’);
})();
NOTE: If you block a staff member or something that staff have placed on the site as a notification for you and you ignore it then you are ignoring something staff tried to say to you and if that thing was a warning, then you’re ignoring a warning and that can result in a ban. So use at your own risk.
Or, wait until the admins and dev team have time to do what they’re already working on.