Remove / Hide 'All' and / or Sort from the Rooms Filter Bar
Version 2
Add this to your custom css under theme options / general to hide All
.th-portfolio-filters a[data-filter='*'] { display:none; }
Add this to your custom css under theme options / general to hide Sort
.th-portfolio-filters span { display: none; }
If you wanted to hide a specific filter try this:
.th-portfolio-filters a[data-filter="#themo_rooms_1 .p-vacation-rental"] { display:none; }
where
.p-vacation-renta
is the name of your filter.
Version 1
Add this to your custom css under theme options / general to hide All
.rooms-filters a[data-filter='*'] { display:none; }
Add this to your custom css under theme options / general to hide Sort
.rooms-filters span { display: none; }
If you wanted to hide a specific filter try this:
.rooms-filters a[data-filter="#themo_rooms_1 .p-vacation-rental"] { display:none; }
where
.p-vacation-renta
is the name of your filter.