I’m relatively new to Drupal, I‘m using version 7. Our website lists courses we offer, there’s a course content type and against this is applied a taxonomy called subject, which contains terms for individual subject areas, e.g. Art, Design, Photography - these are all separate terms. Is there a way of concatenating particular terms and then creating a link to the view based on those terms. So you might create a link with text ‘Art, Design and Photography courses’ which links to the view which contains courses having any of those terms. I’ve got something which works, using a PHP block and hard coded term ids which are then passed to a view via a URL So, courses-view/1+2+3, for example. It works, but it seems very messy. I’d like to keep the terms separate, as this gives a level of flexibility and granularity.
I’ve looked for various taxonomy related modules, but haven’t found anything which looks suitable. I could create my own module - I can see how this might be achieved. I’ve only created basic modules so far and this is likely to be quite complicated.
Does anyone have any thoughts about how this might be achieved?
Thank you.