With taxonomy I made a menu with a number of items. For each item I've uploaded a
series of data. I need that when you click on any item in the menu, will display the data in a table,
For this I have made a view and I put a redirection on the item path to the table view, to show the view
instead of the data list shown by default. In the view I have filtered the data
according to the taxonomy term. My question is: if I have to make a view for each item
by putting a filter with the corresponding term or is there some way that I can
generate the table for each item with one view but instead of putting a filter with
the name put a token or something, so I dont have as views , because I have a lot of terms?
By alby111 on
Comments
Instead of using a filter you
Instead of using a filter you want to use an argument.
Thanks a lot it worked
Thanks a lot nevets
I added a Taxonomía: Term ID in arguments, and in the path of the page display I put as a path mysite/taxonomy/term/%
Thanks a lot you save me a lot of work , regards