• Resolved constantinwild

    (@constantinwild)


    On the search results page, when I click on the search icon to enter other data, the page reloads

    The page I need help with: [log in to see the link]

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

    (@mihail-barinov)

    Hi,

    Looks like I found the solution for you. Please use following code snippet

    add_filter('aws_searchbox_markup', 'aws_searchbox_markup');
    function aws_searchbox_markup( $markup ) {
        $markup = preg_replace( '/value="(.)+?" class="aws-search-field"/i', 'value="" class="aws-search-field"', $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.

    Regards

    Thread Starter constantinwild

    (@constantinwild)

    Thank you @mihail-barinov

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Not cannot search again, page is being updated’ is closed to new replies.