This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Mulitiple Search Instances

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Mulitiple Search Instances

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #29647
    rimasu63rimasu63
    Participant

    I created multiple search instances to search different things.

    What I type in one search bar appears in the second search bar. Is there a setting to stop that?

    #29655
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Well, there is not option to do that, but it should be doable via using a custom code. Try adding this custom code to the functions.php in your theme/child theme directory. Before editing, please make sure to have a full site back-up just in case!

    add_filter('asp_print_search_query', 'aspl_placeholder_modify', 10, 3);
    function aspl_placeholder_modify($placeholder, $id, $real_id) {
    	// Reset to empty, when on the results page, and the results are from a different search instance
    	if (
    		( isset($_GET['p_asid']) && $_GET['p_asid'] != $id ) ||
    		( isset($_POST['p_asid']) && $_POST['p_asid'] != $id )
    	) {
    		return '';
    	}
    	return $placeholder;
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.