Hello,
Thanks for the details, I can log into your website.
I have done below modifications in your website:
1) Edit the post view "AvailableUnits", click "Screen Options", Option "View purpose" choose "Full custom display mode", so you will be able to see all sections of view.
2) in section "Query Filter", you where using filter:
Bedrooms is a string equal to URL_PARAM(bedrooms)
The URL parameter name "bedrooms" is wrong,
in section "Search and Pagination", you are using below shorcode:
[wpml-string context="wpv-views"]<p>Bedrooms</p>[/wpml-string] [wpv-control-postmeta field="wpcf-bedrooms" type="select" auto_fill_default="Bedrooms" url_param="wpv-wpcf-bedrooms" output="legacy" default_label="All" auto_fill_sort="asc"]
The URL parameter name is different: wpv-wpcf-bedrooms
So I have edit the filter to:
Bedrooms is a string equal to URL_PARAM(wpv-wpcf-bedrooms)
3) in section "Search and Pagination", it is recommended to display a default option for those select fields, I have changed all three select field shortcodes, add the attribute default_label="All", for example:
[wpml-string context="wpv-views"]<p>Bedrooms</p>[/wpml-string] [wpv-control-postmeta field="wpcf-bedrooms" type="select" auto_fill_default="Bedrooms" url_param="wpv-wpcf-bedrooms" output="legacy" default_label="All" auto_fill_sort="asc"]
So it will be able to display output a default option "All" in front-end, see the result here:
hidden link
Please test it, check if it is fixed. thanks
More help:
https://toolset.com/documentation/user-guides/views/views-shortcodes/#wpv-control-postmeta
default_label (opt):
'default option text'
Add default option like All or Any on taxonomy select control.