• Resolved olafatorwp

    (@olafatorwp)


    Hello, can I use only AWS whisperer and on search results page have default search query results? Problem is that I need to filter results and filter does not work with AWS search query. I use PRO version. Thanks in advance

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hi,

    You can use following code snippet:

    add_filter( 'aws_searchbox_markup', 'my_aws_searchbox_markup' );
    function my_aws_searchbox_markup( $markup ) {
        $hidden = '<input type="hidden" name="type_aws" value="true">';
        $markup = str_replace( $hidden, '', $markup );
        return $markup;
    }

    You need to add it somewhere outside the plugins folder. For example, inside functions.php file of your theme or use some plugin for adding code snippets.

    Also please tell me – what filtering plugin you are using to create those filters on search results page?

    Regards

    Thread Starter olafatorwp

    (@olafatorwp)

    Thanks a lot, it works ??

    Olaf

    Thread Starter olafatorwp

    (@olafatorwp)

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can I use only whisperer’ is closed to new replies.