By Default the theme has 2 fields connected to default price per night/day/hour
- a text field that shows before price
- a text field that shows after price
If you wish to remove these 2 fields, you can add the below CSS as Custom CSS
[id="property_price_before_label"] {
display: none!important;
}
[for="property_price_before_label"] {
display: none!important;
}
[id="property_price_after_label"] {
display: none!important;
}
[for="property_price_after_label"] {
display: none!important;
}

