I'm trying to create a simple re-usable view to use as kind of menu.
I've got a taxonomy that is used on several content types.
So imagine I've got a view page somewhere that finds all my pants
And another view page somewhere that shows all my hats
But for each view, I can supply an additional 'color' argument to drill-down further into the view.
And imagine that I don't want users to have to deal with an exposed form... instead, I want to simply provide a 'color' menu in a sidebar (block) on those pages.
To me, this seems simple: create a block view of the taxonomy terms, and use the field rewrite to use the term name in the URL.
THE ONLY PROBLEM: how to make the link relative to the current page.
the links are simple "blue","purple", etc, NOT "/blue", "/purple', or "http://example.com/blue", "http://example.com/purple" - that way, the same block can be used whether it's from my /pants/ page or my /hats/ page - it will link to the contextually-appropriate filter (/pants/blue, or /hats/blue, depending on where you started)
I tried using [current-page:url]/[name] but it wouldn't recognize the current-page token.
Anyone got an idea?