Home Forums WoodMart support forum HIDE SEARCH FORM ON MOBILE SIDEBAR Reply To: HIDE SEARCH FORM ON MOBILE SIDEBAR

#108594

newsprince
Participant

@gevcen

Add the following code to your Woodmart > Customs JS.

What this code does is checking if the mobile search form is visible and if it is it hides the search form in sidebar.

jQuery(document).ready(function( $ ){

if( $('.woodmart-mobile-search-form').is(":visible")) {
    
    $('.mobile-nav .searchform').css({'display':'none'});

}
  
  });