To remove the “Listing price per weekend” 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 “Listing price per weekend”.
-
Use CTRL from your keyboard – 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="price_per_weekeend"] {
display: none;
}
[id="price_per_weekeend"] {
display: none;
}