Tell us what you are trying to do?
I have a custom taxonomy.
I want to have the page with an alphabetical filter (search) at the top, so you click a letter and all the categories beginning with that letter are displayed.
Is this possible? If not, are you able to suggest a way it can be done?
I think if you wanted to implement something like this you would need to add a hierarchy to your existing taxonomy such that the top level was letters of the alphabet, and then the second level were the terms you now have (the judges names).
Then you could have a page with a taxonomy View that queried just the top level of this judges taxonomy (i.e. it would return 'A', 'B', 'C', etc.) and in the output section it where these were displayed they would link to the taxonomy archive for those terms.
On those archive pages where it was a top level archive it would show a taxonomy View with a query filter for the parent term so that it would only show child terms of the current archive term (e.g. show terms beginning with A), and then those would link to the archives which actually output the posts as you have now.
You'd likely need to use some conditional sections to determine what to output when.
Does that sound like a route you could want to choose?
Sounds workable but I'm trying to get my head around displaying the taxonomies (my nightmare LOL!)
I can't see how this is done in block views, does that mean I have to do a legacy view?
Can you point me in the right direction, is there a tutorial?
Yes, it needs to use classic editor(legacy view) to setup the taxonomy view.
In your case, it needs a nested views, for example:
1) Parent taxonomy view:
- Query terms of your custom taxonomy
- Filter by:
Select taxonomy terms whose parent is None.
- In view's loop, display term's information + below child taxonomy view
2) Child taxonomy view:
- Query terms of your custom taxonomy
- Filter by:
Select taxonomy terms whose parent is the value set by the parent view.
- In view's loop, display term's information
Edit the page you mentioned above, display above parent taxonomy view's shortcode, like this:
[wpv-view name="parent-taxonomy-view-slug"]