Tutorial Others Latest Updates, ignore tag filter

TCMS

Quote my posts if you want an answer
Donor
Former Staff
Aug 5, 2016
5,797
30,156
Ok from the start I'm going to make this clear: This will just hide threads with certain tags (that you choose) from latest updates. It won't make other threads show up in its place, it won't have a flashy selection box, this is just plain CSS.

This has as the main focus both the list TILE LAYOUT and games. (doesn't mean it can't be used for others)
This should only be used for tags you absolutely never, ever, EVER, want to see.

Requirements:
Browser that allows extensions.
CSS extensions (I recommend Stylus - - )

Steps:
1. After you've got your browser / Extension installed create a new page (this is often done by clicking the extension icon, going to manage and selecting an option to write a new style)
If you're using stylus it will look like this:
You don't have permission to view the spoiler content. Log in or register now.
2. Name your style (stylus forces you to do it)
3. Choose what url it applies to. In this case "Starts with: https://f95zone.to/latest/"
You don't have permission to view the spoiler content. Log in or register now.
4. Copy the code and adapt to your needs. The code is:
CSS:
div[data-tags*="TAG_YOU_DONT_LIKE"] {
    display: none !important;
    height: 0px;
    margin: 0px !important;
}
In this case the tag is "TAG_YOU_DONT_LIKE" which obviously doesn't exist on our site. So if you were to add incest in there, you should replace the TAG_YOU_DONT_LIKE text with incest. Do not remove the quotation marks. Finally click save.
You don't have permission to view the spoiler content. Log in or register now.
4.1 What if I have multiple tags I don't wish to see? Well it's quite simple.
You don't have permission to view the spoiler content. Log in or register now.

Note: All tags are lowercase.

Any questions / bugs let me know. If it's not working please post the code you're using.

Final note: Huge thanks to PixelRepublic / Sam for the great page construction. It's an amazing feature, it's really well designed and whether intended or not, the way it was built allows for a huge amount of personal edits to fit the page to your liking with basic things like CSS. :)
 
Last edited:

Canto Forte

Post Pro
Jul 10, 2017
20,991
25,681
All hail Otter God Harem Master Commander Supreme of Galaxy Defenders!

One problem there, chief ...errr ... there are countless tags on countless games...

Don't kill our games!!!
 

s4msepi0l

Member
Jun 20, 2017
176
349
There's a way to completely eliminate the box instead of just deleting the game picture and leaving an empty space.

With "visibility: hidden":



with "display: none":


Just follow the tutorial but make the change from visibility:hidden to display:none

CSS:
div[data-tags*="furry"], div[data-tags*="real porn"], div[data-tags*="bestiality"] {
    display: none !important;
    height: 0px;
    margin: 0px !important;
}
 

TCMS

Quote my posts if you want an answer
Donor
Former Staff
Aug 5, 2016
5,797
30,156
There's a way to completely eliminate the box instead of just deleting the game picture and leaving an empty space.

With "visibility: hidden":



with "display: none":


Just follow the tutorial but make the change from visibility:hidden to display:none

CSS:
div[data-tags*="furry"], div[data-tags*="real porn"], div[data-tags*="bestiality"] {
    display: none !important;
    height: 0px;
    margin: 0px !important;
}
Will edit op. I use lists on LU so wasn't really aware of this problem. ty
 

t727

Well-Known Member
Jan 4, 2018
1,515
1,712
TCMS
This good Sir is pure genius, thank you very much!

For those like myself who doesn't want to use addons the code provided by TCMS can be pasted into the style editor in the development mode in browsers(usually F12)
 

RenToyonde

Newbie
Sep 9, 2018
20
124
Nice. 16 tags blacklisted, and now every page has 4 titles on average. Shows just how much garbage I had to suffer through. Thanks a lot. Though most of those that do appear are garbage as well, due to the scarcity of tags, but at least I don't have to see the ones that I would hate for sure (like absolutely everything under the 3DCG tag, which is just vomit-inducing for me).
 
  • Like
  • Haha
Reactions: lewdman89 and Grelk

3xd_tango

Member
Jul 28, 2017
137
100
Some mobile browser dont support stylus for that you can use Tampermonkey

JavaScript:
// ==UserScript==
// @name         F95zone exclude tag
// @namespace    ***
// @version      0.1
// @description  try to take over the f95zone!
// @author       Me
// @match        https://f95zone.to/latest/
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

GM_addStyle ( `
    div[data-tags*="female protagonist"],div[data-tags*="text based"] {
    display: none !important;
    height: 0px;
    margin: 0px !important;
}
` );

(function() {
    'use strict';

    // Your code here...
})();
 

3xd_tango

Member
Jul 28, 2017
137
100
And if you want to filter out the likes that is less then your requirement.Edit this line "if (number <= 200) {"
JavaScript:
(function init() {
    //     'use strict';
    const element = document.querySelectorAll('.resource-tile_info-meta_likes')
    if (element[0]){
        for (var i = 0; i < element.length; i++) {
            const number = parseInt(element[i].innerText)
            // //         window.alert(number)
            if (number <= 200) {
                element[i].parentNode.parentNode.parentNode.parentNode.parentNode.style.display = 'none'
                element[i].parentNode.parentNode.parentNode.parentNode.parentNode.style.margin = '0px'
            }
        }
    } else {
        setTimeout(init, 0);
    }
})();
 
  • Like
Reactions: RenToyonde
Oct 29, 2017
26
26
Thank you so much! I am using 3xd_tango's userscript instead of the CSS extension (since I already use tampermonley), and it works perfectly. Only real option for this, since one of the admins has refused to add the option to exclude tags on the grounds of "you might miss something you like". Once or twice I have seen the lack of distinguishing tags as avoidable/optional to further justify that line of thought, but rather than making that a thing (some of these threads are several years old), thjey just keep trotting it out as an excuse.

Now, instead of being able to remove the exclusion so I can check if there are games where that tag content is optional/avoidable, I can just uncheck the script and refresh. Or ignore it and move on, because it's not worth the hassle to dig through threads to check for most of these games. The only thing I hate more than companies/devs thinking they know what I want better than I do, are the tags I am hiding now :p

Also, tip for anyone having issues with it: tags are case sensitive, and must all be lower case.
 

3xd_tango

Member
Jul 28, 2017
137
100
Thank you so much! I am using 3xd_tango's userscript instead of the CSS extension (since I already use tampermonley), and it works perfectly. Only real option for this, since one of the admins has refused to add the option to exclude tags on the grounds of "you might miss something you like". Once or twice I have seen the lack of distinguishing tags as avoidable/optional to further justify that line of thought, but rather than making that a thing (some of these threads are several years old), thjey just keep trotting it out as an excuse.

Now, instead of being able to remove the exclusion so I can check if there are games where that tag content is optional/avoidable, I can just uncheck the script and refresh. Or ignore it and move on, because it's not worth the hassle to dig through threads to check for most of these games. The only thing I hate more than companies/devs thinking they know what I want better than I do, are the tags I am hiding now :p

Also, tip for anyone having issues with it: tags are case sensitive, and must all be lower case.
if you liked the above script you can try my latest Script that contain some of new feature to discover ;)
 

TheBlueKnight

Discussion Dynamo
Respected User
Jr. Uploader
Oct 1, 2018
24,893
18,870
If it's not working because of the alpha make a bookmark with the tags excluded to go to, or use the regular one. The new version is only replacing the old one temporarily for stress testing though, so it should be back at some point. Until it's actually replaced properly.

Edit - Missed out the il...
 
Last edited:

3xd_tango

Member
Jul 28, 2017
137
100
If it's not working because of the alpha make a bookmark with the tags excluded to go to, or use the regular one. The new version is only replacing the old one temporarily for stress testing though, so it should be back at some point. Until it's actually replaced properly.

Edit - Missed out the il...
Working on it

edit - Done with my script updating it works with new page
 
Last edited:
  • Like
Reactions: TheBlueKnight

randi99

Newbie
Jul 28, 2021
64
96
Thanks this is a very usefull tool, it would have been better if f95zone implemented it without need for extension.