Plugin Author
TC.K
(@wp_dummy)
For the first question, you can change the exclude to include by using this filter `uwpqsf_taxonomy_arg()’.
eg
add_filter('uwpqsf_taxonomy_arg', 'exclude_to_include');
function exclude_to_include($args,$taxname,$formid){
$newarg = array();
$newarg['hide_empty'] = $args['hide_empty'];
$newarg['include'] = $args['exclude'];
return $newarg;
}
Note that, when you using this filter to change to include, DO NOT check the option Exclude the term from being searched. Otherwise it will bring you troubles.
Secondly, it would be awesome if ranges were within range sliders instead of dropdown etc..
I have range addon plugin which can do this, please goto here.
thanks, will try that.
will you be integrating that include option into the plugin in future releases?
I came to the support forum to ask the same thing, and great to see that there is a solution provided by the author himself! 🙂 Thank you.
It’s really an amazing plugin and the only thing I was missing was the inlcude option instead of exlude.
But if I may ask, is it not better to integrate this option in future releases and let the user choose which options they want to use?
For example: I use alot of tags, and almost everyday I add a few new tags. When I add new tags I have to edit the forms manually. This is time consuming and with an inlcude option I would not have to edit the forms.
Thank you again!
Plugin Author
TC.K
(@wp_dummy)
Well, seem this features has been requested by many users. So, maybe I will add this feature in the future update. However, I am not giving any promise right now, I will consider it but I can’t be 100% sure will add it in the plugin.
Good to hear and I understand you. I appreciate it anyways.
Thanks (for your quick reply)! 🙂