Home › Forums › WoodMart support forum › HIDE SEARCH FORM ON MOBILE SIDEBAR › Reply To: HIDE SEARCH FORM ON MOBILE SIDEBAR
February 20, 2019 at 8:59 am
#108594
newsprince
Participant
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'});
}
});