Feature description:
Use conditions to filter individual values in fields that contain multiple values, like genre or track.tags.
Currently, a track that has multiple Track Tags is displayed as: “Tag1, Tag 2, Tag 3”.
I would like to add a validation to exclude “Tag 2” from being displayed in the now playing screen and see only: “Tag 1, Tag 3”.
Problem solved:
I have multiple tags per track, and I just don’t want to display all of them in the now playing screen, but I still want those values to exist, as I want to use them for filtering purposes.
So I tried these two templates:
%track.tags|track.tags != “Tag 2”%
this one does nothing as I suppose the condition is applied to all the tags as a single string: “Tag 1, Tag 2, Tag 3”
%track.tags|track.tags -= “Tag 2”%
this one makes all the tags dissapear I suppose for the same reason mentioned above
Brought benefits:
Better control of what genres or track tags are displayed in the Now Playing screen.
Other application solutions:
N/A