Viewing last 25 versions of post by Ciaran in topic Feature suggestions and discussion

Ciaran
Even Worse Kobold -
Birthday Fur - Joined within the first year of the site operation and has had significant amount of activity as of June 1, 2021.
Derpy Fur - Prevented Furbooru's terrible fate in April of 2021.
Astra - Helped choose the name for our mascot - Astra.
Passing of the Eclipse - Joined within the first month of public opening and has had at least some activity as of August 3, 2020.
Gold Piece - Gold Supporter on Patreon
Artist -
Since the Beginning - Registered before the site was public

Moderator
Draw or die
[@Bubbelvatten](/forums/meta/topics/feature-suggestions-and-discussion?post_id=44413#post_44413)
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.
No reason given
Edited by Ciaran