I am trying to create a unique smart filter for individual collections as part of dynamic collections. specifically I am doing this for seasonal collections. I want, for Christmas only, for the collection to include movies where christmas is in the title. And for example, maybe veterans day will include all 'war' genre movies. Here is what I tried, and it didn't work. The holiday template and all other lines I am using from the default seasonal.yml file.
dynamic_collections:
Seasonal:
type: custom
data:
# ... other seasonal data ...
title_format: <<key_name>> <<library_typeU>>s
template:
- holiday
- shared
- arr
template_variables:
emoji:
# ... other emojis ...
smart_label:
default:
sort_by: title.asc
limit: <<limit_<<key>>>>
all:
label: <<emoji_<<key>>><<key_name>> Movies
christmas:
sort_by: title.asc
limit: <<limit_<<key>>>>
all:
label: <<emoji_<<key>>><<key_name>> Movies
title.contains: "Christmas"
halloween:
sort_by: title.asc
limit: <<limit_<<key>>>>
all:
label: <<emoji_<<key>>><<key_name>> Movies
genre: "Horror"
<<smart_label>> not found in the smart_label attribute data |