Reputation: 412
So in Drupal 7 it was very easy to pass a taxonomy term by name as a contextual filter and it USED to have the option of convert term name to id. What's the equivalent of that in Drupal 8? I've tried the validator as "taxonomy term name" and it doesn't work. When I try to pass it by name I get nothing, but when I do ID it works. So I don't understand how to pass the actual taxonomy term name as the filter.
Upvotes: 4
Views: 2467
Reputation: 2607
You first have to create a relation with the taxonomy terms by adding the relationship with the taxonomy list or Taxonomy terms on node
. Once you have added the relation, you can now add a contextual filter called name
with the category Taxonomy term
. This way you can pass the taxonomy term by name to the filter.
Upvotes: 11