I have following page structure:
user/pages/
- 02.products
. taxonomy:category: product
. taxonomy:tag: [p1, p2, p3] - 03.blog
. taxonomy:category: blog
. taxonomy:tag: [b1, b2, b3] - 04.internal
. taxonomy:category: internal
. taxonomy:tag: [i1, i2, i3]
1) I have a site wide search based on simplesearch that is launched the URL /search?query=<search-term>. How can I configure the simplesearch plugin to search among both 02.product and 03.blog categories. Currently I only succeed searching 1 category not multiple. I don't find an example how to configure.
2) I like the taxonomy to list the tags p1, p2, p3, b1, b2, b3 (this is currently working). But when clicking on p1, p2, p3 it fails to show that page. It only works for b1, b2, b3. How I have to configure so I can jump to
3) I want to avoid taxonomy showing i1, i2, i3 tags when I'm inside 02.products and 03.blog but want all tags when I'm inside 04.internal How can I accomplish this? I guess this is not forseen in the implementation yet ...
Thanks