View Single Post
Old 07-05-2020, 01:39 PM   #4274
JimmXinu
Plugin Developer
JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.JimmXinu ought to be getting tired of karma fortunes by now.
 
JimmXinu's Avatar
 
Posts: 7,041
Karma: 4604637
Join Date: Dec 2011
Location: Midwest USA
Device: Kobo Clara Colour running KOReader
Quote:
Originally Posted by JimmXinu View Post
Short answer: The genre(w/add_genre_when_multi_category) -> crosscat -> category trick isn't going to work with AO3 and a few other sites; those that don't internally collect category.
After some more thought, it occurred to me that while adding crosscat to category won't work, adding it to fandoms will:
Code:
[archiveofourown.org]
include_in_fandoms:fandoms,crosscat
Full INI code:
Spoiler:
Code:
[defaults]
is_adult:true

## Add "Crossover" to genre
add_genre_when_multi_category:Crossover

## a tmp var, basically.  
## Need to add to your add_to_extra_valid_entries line.
add_to_extra_valid_entries:,crosscat

## fill with genre skipping replace/include/exclude
include_in_crosscat:genre.NOREPL

## only include Crossover in crosscat.  
## Again, incorporate with your existing, if  you have one.
add_to_include_metadata_pre:
 crosscat==Crossover
 description==asdf
 characters==asdf

## remove Crossover from genre.  
## Again, incorporate with your existing, yada yada yada.
add_to_exclude_metadata_post:
 genre==Crossover

include_in_category:category,crosscat

[archiveofourown.org]
include_in_fandoms:fandoms,crosscat


So effectively the same thing.
JimmXinu is offline   Reply With Quote