Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › disabling search on mobile devices › Reply To: disabling search on mobile devices
March 14, 2023 at 11:21 am
#41746
Keymaster
Hi Marily,
1. You can disable the search for mobile devices here.
2. This may need some custom CSS code, but it’s probably possible:
@media only screen and (min-width: 768px) {
.asp-try {
display: none !important;
}
}