My use case is I want terms still have their taxonomy/term/tid path, overridden by a panel with a view.
The way I figured out how to do it it with taxonomy_filter and a bit of quirkness, by having the view accept tid/tid,tid,tid
For taxonomy_filter I needed it to accept custom path filter bits.
Here's a quickie path that seems to be working so far
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | 677708_taxonomy_filter_filterpath.patch | 2.84 KB | hefox |
| taxonomy_filter_arg_paths.patch | 2.36 KB | hefox |
Comments
Comment #1
solotandem commentedHelp me understand your suggestion. Are you saying the URL settings in the Advanced settings page of this module could not be used to accomplish this? What does your page URL look like along with the overridden path for the panel and view? Please elaborate further if my questions do not seem to be getting at your suggestion.
Comment #2
hefox commentedYes, the url settings in advanced did not offer enough text insertions that I desired. I'll elaborate more later, but that's the basic of it.
Comment #3
hefox commentedSo I rethoght a bit how I'd want it to work
Basically I want terms to retain their own private page, but be filterable by taxonomy filter.
So using this patch I can
Set up/Use case:
advanced settings
path:
taxonomy/term/%arg2
output path:
taxonomy/term/%arg2%gets
taxonomy term view set up to take in one taxonomy tid term (one term)
Exposed filter (as block) that accepts taxonomy terms 'tid' *
Panel with the view attached, views exposed form not displayed.
stuff done in site's module thesite
so at taxonomy/term/ I can use taxonomy filter to filter the view :D, and still retain terms private taxonomy/term/tid, still path aliased. I think that's cool XD!
(Additional coolness would be to limit what nodes the count function counts on, and explode a changeable tid from display in the filters, though if anything I can do that by overriding a theme function I suspect.).
*(Er, that term exposed filter is one that accepts multiple vocabularies, a custom filter of mine; @ http://github.com/hefox/vocabulary/blob/master/views_handler_filter_term...) .
Comment #4
solotandem commentedIn the next dev release and the 6.x-1.3 release, I included an alter hook as you suggested in your patch. The custom filter tokens change had previously been committed. Let me know if this works for you.
Thanks for the suggestions.