Quote:
Originally Posted by isarl
You're so close! There's no need to give up when you're so close. 
|
Thanks for your patience - now two-third is done ;-) it works as expected.
But ... if you still have time and interest ... I like to exclude values from two fields and do not know how to join that in the template.
- old setting of collection columns: tags, #readingpool, #fivestar
- target is to reduce tags and readingpool.
- collection columns is now: #fivestar
- template to reduce "readingpool" (leicht/danach) works well.
program:
# Remove tags listed in tags_to_ignore
tags_to_ignore = 'danach, leicht, stopped';
list_join(':@:', list_difference($#readingpool, tags_to_ignore, ','), ',')
How to combine
list_join(':@:', list_difference($#readingpool, tags_to_ignore, ','), ',')
list_join(':@:', list_difference($tags, tags_to_ignore, ','), ',')