- This topic has 2 replies, 2 voices, and was last updated 8 years, 10 months ago by .
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › Search Box
I have used the free version of your plugin. It was easy to modify the SEARCH BOX:
/* SEARCH BOX */
if((isset($_POST[SF_FPRE.’search’]))&&($this->has_form_posted))
{
$this->searchterm = trim(stripslashes($_POST[SF_FPRE.’search’]));
/*Additional Row*/
$this->searchterm = substr($_POST[SF_FPRE.’search’], 0, 4 );
…
Because the search should only consider/ extract the first 4 parts of the search string.
I cannot find an equivalent code for the search box in the pro version.
Many thanks in advance for any help.
Hi there
If you must edit the query best not to hack the plugin directly 😉
Instead, you can use the filter sf_edit_query_args
– which allows you to change any of the parameters that are passed to the query:
If you lower the priority to say 20:
add_filter( 'sf_edit_query_args', 'filter_function_name', 20, 2 );
This will happen after S&F has setup the query.
This means you should be able to access the object like:
function filter_function_name( $query_args, $sfid ) {
//if search form ID = 225, the do something with this query
if($sfid==225)
{
//modify $query_args here before returning it
//here you can limit the length of 's' which is the search term
$query_args['s'] = "overwritten search term";
}
return $query_args;
}
Thanks
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
We also use cookies to store items in your cart as well as allowing your to login on the site.
You can adjust all of your cookie settings by navigating the tabs on the left hand side.
By continuing to use this site, you also agree to our Privacy Policy.
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
*Other cookies used for logging in and cart functions will only be used when you use those features and cannot be disabled.
If you disable these cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.
This website uses Google Analytics to collect anonymous information such as the number of visitors to the site, and the most popular pages.
Keeping this cookie enabled helps us to improve our website.
Please enable Strictly Necessary Cookies first so that we can save your preferences!
More information about our Cookie Policy