Mulitiple Search Instances

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

This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko Ernest Marcinko 3 years, 6 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #29647
    rimasu63
    rimasu63
    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?

    Attachments:
    You must be logged in to view attached files.
    #29655
    Ernest Marcinko
    Ernest 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;
    }
    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.