How about some custom CSS? Something like:
.search_wrap, .login {
display:none;
}
You’d have to modify it to trigger on mobile only.
-
This reply was modified 4 years, 5 months ago by
kgagne.
@kgagne
You saved my life. THANKS!
Hello,
you can using css to hide search,login and register menu for mobile device.
Using @kgagne css also hide in dektop view.
please add following css
Desktop
.menu_show .search_wrap {
display: block;
}
Mobile:-
.header_mobile .search_wrap, .header_mobile .login {
display: none;
}
Thanks