• Resolved ahiad

    (@ahiad)


    Hi!
    I wanted to know if there’s any way to replace the search icon in the search form please.
    thank you!

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

    (@mihail-barinov)

    Hi,

    Yes, you can. If you want to replace it with another SVG that just use the following code snippet:

    add_filter( 'aws_searchbox_markup', 'my_aws_searchbox_markup' );
    function my_aws_searchbox_markup( $markup ) {
        $markup = preg_replace( '/<svg([\s\S]*?)<\/svg>/', 'NEW_SVG_MARKUP', $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

Viewing 1 replies (of 1 total)
  • The topic ‘replace search icon’ is closed to new replies.