Limit Autocomplete Search Suggestions for Widget
-
Hello! I purchased the WP Store Locator widget plugin. I’m using the following snippet to limit the autosuggest options to United States, Mexico, and Canada. It doesn’t seem to limit the results for the widget. May you advise if there is a snippet that I can use to do the same for the widget?
add_filter( ‘wpsl_autocomplete_options’, ‘custom_wpsl_settings’ );
function custom_wpsl_settings( $settings ) {
$settings[‘componentRestrictions’][‘country’] = array( ‘mx’, ‘us’, ‘ca’ );
return $settings;
}The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Limit Autocomplete Search Suggestions for Widget’ is closed to new replies.