If you wish that on taxonomy page you do not let users find properties form other categories/types/cities or areas and you simply let people sort the results from that taxonomy, you can use below css for this result
.archive .dropdown.listing_filter_select.filter_action_category {
display: none;
}
.archive .dropdown.listing_filter_select.filter_category {
display: none;
}
.archive .dropdown.listing_filter_select.filter_county {
display: none;
}
.archive .dropdown.listing_filter_select.filter_city {
display: none;
}
.archive .dropdown.listing_filter_select.filter_area {
display: none;
}
.archive .dropdown.listing_filter_select.order_filter {
display: none;
}
.listing_filter_select.listing_filter_views.list_filter_wiew {
display: none;
}
.listing_filter_select.listing_filter_views.grid_filter_wiew {
display: none;
}
/* CSS to remove the entire filter section */
.listing_filters_head {
display: none;
}
