Hey @ashley! I am afraid we do not have any tutorial for this. However, the tags setup is pretty simple as it is the default behavior for the filter tags.
I recorded a short video to show you what I mean regarding the “Filtering by: tags” bar. The whole element is hidden until the user begins applying filters. And if they remove the filter, then the whole element returns to being hidden. Is it possible for me to apply this? Thanks!
Hey @ashley! I see what you mean, this is done with a CSS selector that targets elements with no siblings (when the tags are removed the .filter_tags-text element has no siblings) →
/* show filter by label */
.filter_tags-text:only-child {
display: none;
}
</style>
Here is the structure used for the tags component structure if you’d like to recreate it.