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

    (@mihail-barinov)

    Hi,

    Please try to use following code snippet:

    add_filter( 'aws_searchbox_markup', 'my_aws_searchbox_markup' );
    function my_aws_searchbox_markup( $markup ) {
        $markup = str_replace( '<div class="aws-container"', '<search class="aws-container"', $markup );
        $markup = str_replace( '</form></div>', '</form></search>', $markup );
        return $markup;
    }

    Regards

    Thread Starter Paul

    (@paulschiretz)

    Works great! Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘html search tag’ is closed to new replies.