To remove the “City Fee” field from the front-end submission form in WpRentals, follow these steps depending on how you want to handle it:
-
Go to Admin Dashboard → Theme Options.
-
Click on Add Listing Page & Payment Settings → Select the fields for the listing submission
-
Look for the field “City Fee”.
-
Use CTRL – Select to un-select it
-
Save changes.
Help – https://help.wprentals.org/article/1-30-how-to-manage-submit-form-fields-and-mandatory-fields/
Hide with CSS
If for some reason you want to hide the field visually, you can add the field as Custom CSS.
Add this to Appearance > Customize > Additional CSS.
[for="city_fee"] { display: none; } [id="city_fee"] { display: none; } [for="city_fee_per_day"] { display: none; } [id="city_fee_per_day"] { display: none!important; } [for="city_fee_percent"] { display: none!important; } [id="city_fee_percent"] { display: none; }