Home > OS >  How can i remove the "search icon" on this theme?
How can i remove the "search icon" on this theme?

Time:02-04

i want to remove the "search icon/ the magnifying glass icon on this theme (broadnews by AF themes). how will i do it without messing up the others.

i did nothing and was afraid to ruin the theme

CodePudding user response:

You can try it to hide with css:

.af-search-wrap {
  display:none;
}

CodePudding user response:

In your child theme in functions.php add the following line.

remove_action('broadnews_load_search_form', 'broadnews_load_search_form_section');
  • Related