View Single Post
Old 11-10-2022, 03:26 PM   #7720
ownedbycats
Custom User Title
ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.ownedbycats ought to be getting tired of karma fortunes by now.
 
ownedbycats's Avatar
 
Posts: 11,117
Karma: 77213681
Join Date: Oct 2018
Location: Canada
Device: Kobo Libra H2O, formerly Aura HD
Quote:
Originally Posted by dailyalice View Post
Gotcha. Okay. I appreciate the AO3 series status going into status, I'll just continue to remove it from Tags. (It confused me for awhile that I was still seeing status type info in Tags until I realized it was just associated with anthologies, I figured it had something to do with how they work.)
Use Action Chains' single-field edit to run this template on tags:

Code:
program:

	if 
		$#fanficstatus == 'Anthology' 
	then
		cleaned_tags = list_difference(
			$tags,
			'In-Progress, Complete',
			',')
	else
		$tags
	fi
EDIT: Slightly modified version for when 'Anthology' is in tags.

Code:
program:

	if 
		'Anthology' in $tags
	then
		cleaned_tags = list_difference(
			$tags,
			'In-Progress, Complete',
			',')
	else
		$tags
	fi

Last edited by ownedbycats; 11-10-2022 at 07:42 PM.
ownedbycats is online now   Reply With Quote