Hi Shane,
Maybe it's best to read my last post again. I certainly don't want the taxonomy gone.
Let me recapitulate.
First I had a Custom Fields Group "Kitchen" which contained about 20 checkboxes (fridge, oven, ...). This allowed our client to easily check/uncheck features of the kitchen. Downside was that in order to display all checked features on the frontend, there was no "show all" code.
Then I had a look at your Toolset real estate demos and saw that you use Taxonomies for these kind of features, so I created a few hierarchical Taxonomies (kitchen, living room, garden) - Screenshot-1. These are still easy to check/uncheck and our client can freely add more if required.
Now for the frontend part of this. Of course I needed a way to display the selected terms for each of the taxonomies so I created a View to query my "kitchen features" - Screenshot-2 - which looped over all terms and display the ones who aren't empty - Screenshot-3.
For a few days, I thought I had it figured out, because as a matter of test, I checked ALL terms and hooray, ALL terms displayed in the View. Except, when I unchecked a few to test further, the View still displayed ALL terms. Unfortunately I cannot find any filter to just display the selected terms. Which is an issue, as this View gave me the most possibilities to choose my sorting, separator, ...
After a few hours searching in the forum, I then found this code - which only works in a Content Template by the way - not in a View Loop
[wpv-conditional if="( '[wpv-post-taxonomy type='keuken-voorziening' format='slug']' ne '' )"]
[wpv-post-taxonomy separator=" - " format="name" type="keuken-voorziening"]
[/wpv-conditional]
This gives me ALMOST the desired result - Screenshot-4 EXCEPT I cannot control the sorting, it is always alphabetically.
So what I want is - preferably - a View that displays only the selected taxonomy terms in the order I have set the terms, so I can insert that view into my Page Content Template.