Remove search bar in listing page

When I applied this CSS code, the search bar is successfully removed. However, I realize it also remove the filter button in mobile view. How to remove this search bar in listing page while not removing the filter button?

.hp-page__header:not(:last-child) {
display: none;
}

Hi! This will hide the search bar, (on every page) but not the filter:

.hp-form--listing-search{display:none;}

sorry i forgot to mention. Actually the hp listing search bar is also in the header-navbar next to the side logo. If I use this code .hp-form–listing-search{display:none;}, both of them will be disappear.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.