skip to Main Content

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.

2

Answers


  1. You can try it to hide with css:

    .af-search-wrap {
      display:none;
    }
    
    Login or Signup to reply.
  2. In your child theme in functions.php add the following line.

    remove_action('broadnews_load_search_form', 'broadnews_load_search_form_section');
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search