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](/forums/meta/topics/feature-suggestions-and-discussion?post_id=44411#post_44411)'s question):
1. Install TamperMonkey or whatever extension you trust that works with your browser.
2. To block all advertisements, create and activate this script:
> (function() {
> 'use strict';
> document.querySelectorAll('#imagespns').forEach(el => el.style.display = 'none');
> })();
Ads will disappear.
3. 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.
4. 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.
And if you'd like a different solution [the site's code is open source, please join the development community and make the future you desire](https://github.com/furbooru/philomena).
Or, wait until the admins and dev team have time to do what they're already working on.