Quote:
Originally Posted by dailyalice
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