Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    one way to do that would be to add the code below in your theme functions.php file

    
    add_filter( "shortcode_atts_adverts_list", function(  $out, $pairs, $atts  ) {
      if( is_tax( 'advert-category' ) ) {
        $out["search_bar"] = "disabled";
      }
      return $out;
    }, 10, 3 );
    
Viewing 1 replies (of 1 total)

The topic ‘Remove search bar’ is closed to new replies.