- This topic has 2 replies, 2 voices, and was last updated 5 years, 9 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.
Support › Forums › Sunshine Pro Theme › . dot after text in website search field?
I cannot erase the dot after the text in the website search field?
Please help me to erase this dot, please see screenshot
Best Regards,
Jesper
Add this in your functions.php file
add_filter( 'genesis_search_text', 'sunshine_search_text' );
function sunshine_search_text( $text ) {
return __( 'Search this website', 'genesis' );
}
I think that it will remove the dot.
Thank you Paul, just perfect:-) please mark as [Resolved]