Viewing 1 replies (of 1 total)
  • Plugin Author ILLID

    (@mihail-barinov)

    Hi,

    You can add code below to your theme functions.php file:

    add_filter('aws_searchbox_markup', 'aws_searchbox_markup');
    function aws_searchbox_markup( $markup ) {
        $pattern = '/(<input\s*type=\"text\".*?\/>)/i';
        $markup = preg_replace( $pattern, '${1}<button class="aws-icon">GO</button>', $markup );
        return $markup;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘ADD SEARCH BUTTON’ is closed to new replies.