Greasy Fork is available in English.

AO3: Tag Hider

Hide tags automatically when there are too many tags. Add hide/show tags button to browsing page and reading page.

< Feedback on AO3: Tag Hider

Question/comment

§
Posted: 09 April 2019

Change defaults?

Could you add a section which allows the user to specify if they want the tags to be shown or hidden by default? Sometimes I like to browse through chapters, and having a "hide tag" option is really useful there.

I managed to do it myself by editing the code, but for the sake of future users, it might be nice

VanniusPembuat
§
Posted: 09 April 2019

Hi.

This script show/hide tags by comparing the number of tags of stories to MAXTAGSONBROWSINGPAGE and MAXTAGSONREADINGPAGE.

if number of tags > MAX_TAGS_ON_BROWSING_PAGE
    hide tags
else
    show tags

You can change MAXTAGSONBROWSINGPAGE and MAXTAGSONREADINGPAGE respectively at the config section of the script.

Default setting is

const MAX_TAGS_ON_BROWSING_PAGE = 15;
//If number of tags > 15, hide tags on browsing page.
const MAX_TAGS_ON_READING_PAGE = 0;
//Always hide tags on reading page.

If you want to hide tags always on browsing page, you can change MAXTAGSONBROWSINGPAGE to 0.

VanniusPembuat
§
Posted: 09 April 2019

I added explanation comments to the config section for other users.

Post reply

Sign in to post a reply.