Amazing plugin with many options
-
This plugin is truly amazing! Thank you so much for writing it!
It’s very simple to use, the code looks clean to me (from what I saw quickly) and it provides a lot of functionality.
For the website where I use your plugin, I also use Polylang to provide different languages. For the search to work on the other languages I had to tweak one line of search_filter.php (dirty hack only for the redirect, maybe you would do that nicer):
Original code:
wp_redirect((home_url().$this->urlparams));
My modification:
if(function_exists('pll_current_language')) { $language_home_url = home_url()."/".pll_current_language(); } else { $language_home_url = home_url(); } wp_redirect(($language_home_url.$this->urlparams));
And the other thing I wanted to ask you is if it would be possible, in the future, to let users choose if the multiple category selection should be
AND
orOR
. In some cases, one would like to “match all selection criteria” (AND) or “match either selection criteria” (OR).Anyhow, for now I’m really happy with this so thank you again ??
- The topic ‘Amazing plugin with many options’ is closed to new replies.