• Resolved maggiee

    (@maggiee)


    Hi there,

    Is it possible to edit the style of the search form in the fronted?
    SO it looks more beautiful. E.g. Change the expression from “send” to “search”

    Would be happy to hear from you!
    Greetings
    Maggi

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

Viewing 1 replies (of 1 total)
  • Plugin Author Eyal Fitoussi

    (@ninjew)

    Hello @maggiee,

    You can modify the label of the search button by adding the script below to the functions.php file of your theme:

    
    function gmw_custom_lable_submit_button( $args ) {
    
    	$args['label'] = 'Search';
    
    	return $args;
    }
    add_filter( 'gmw_search_forms_submit_button_args', 'gmw_custom_lable_submit_button', 50 );
    

    As for the look of the form, this can be modified using custom CSS.

Viewing 1 replies (of 1 total)

The topic ‘Edit form style’ is closed to new replies.