Suppress Tagging List at the Bottom of a Tiddler

I’m a solo performer (acoustic guitar, vocals, harmonica) with hundreds of cover tunes and I’ve set up a TiddlyWiki site that has my song list so people can make requests. I’ve just started adding in the decades of all the songs, so I have tags like “'70s Music”, “'80s Music”, etc.

In those tiddlers for each decade I put code to list the titles of all the songs with that tag, each one followed by a dash and a clickable link to the artist tiddler (that one lists all the songs I know by that artist). I don’t make the song titles clickable because those tiddlers don’t have any content and users would just end up having to close them.

At the bottom of the decade song lists, I’m getting an extra section added automatically with the heading “Tagging:” that shows all the items that use that tag. This is redundant information since I already have all the songs with that tag listed above. How can I suppress this automatically generated list?

I don’t think it should matter, but I’m running TiddlyWiki 5.2.5. If you want to check out the page, it’s at https://toddcorsonmusic.tiddlyhost.com/.

Thanks for the help,
Todd

Go to the About MPTW5 tiddler then click on the $:/Mptw5/TaggingList at the bottom.

You can edit the <$list> widget’s filter in that tiddler to exclude tiddlers you don’t want to see. Add a tag or field (something like “noTagging”) to all the Decade-tiddlers. Then edit the list’s filter to be something like

<$list filter="[all[current]!tag[noTagging]tagging[]limit[1]]">
<$list filter="[all[current]!has[noTagging]tagging[]limit[1]]">

Whatever way you decide to indicate that you don’t want the tagging template to appear, edit the filter to not include tiddlers with that indicator.

Awesome!

Thanks, Brian; that did the trick. There were actually 2 filters I needed to add it to: one for the “Tagging:” heading and the other for the list itself.

I did notice that if I turn off the Mptw5/TaggingList feature completely (by removing the $:/tags/ViewTemplate tag on it), there is less whitespace at the bottom of my tiddlers. Is there any way to supress the extra whitespace when the Tagging section isn’t displayed?

Best,
Todd