Hi @websherpa,
Thanks. It’s been quite a ride getting here, but we’re enjoying it immensely.
In between diapers and sleep I’ve been thinking about this issue. I don’t see this as a feature that would benefit the plugin as a whole, but I can see some people using it. Therefore I’m not keen on implementing it as a plugin feature, but I’d rather help you out by providing a piece of code that accomplishes the same.
But before I go any further in my thought process, I’d like to ask if you could live with a more programmatical solution. I’m thinking you can keep using the same url, but by appending something like ?filterset=somethingA
or ?filterset=somethingB
the results will be according to the provided subsets. These will have to be set programmatically as an array. Something like:
$sets['somethingA'] = [
'field_1', '=', 'Some name',
'field_3', 'contains', 'gmail.com',
];
And then those filters would apply when using that filterset.
Does that sound like something you can work with? The plugin has the necessary hooks to make this work.
The filter GUI is something that I have on the roadmap, but I’m not sure about the implementation yet. I want it to work better that, or at least as good as, the GF one but when I’m duplicating that much code, I start to wonder if moving the plugin to the export section isn’t a better option. I’m not sure yet.
Please let me know what you think about this.