WpRentals Login & Register Forms Overview The Login & Register Forms in WpRentals can be displayed in multiple ways: 1️⃣ Modal Form Enabled via Theme Options >Register and Login Settings Displays an image and message (configured in the Header section). Mobile-friendly version available. 2️⃣ Shortcode Add the Login & Register shortcode to any page. Help […]
Submit Form
City, Neighborhood, and Country – Listing Location Options for the Submission Form
Content Google Places Open Street Places Manual Input Dropdown WpRentals offers four ways to set locations: Google Places Autocomplete OpenStreet Places Autocomplete Manual Input Dropdown Selector Google Places (Autocomplete) What It Does Enables Google Places for autocomplete. Saves City, Area, and Country from the selected location. Configure Map Settings Go to Admin > WpRentals Options […]
Listing Submit Page – How to manage submit form fields and mandatory fields
You can manage what fields appear on the listing submission form by going to: Theme options -> Add Listing Page & Payment Settings -> Listing Submission Form Main Settings: Select the fields for the listing submission Choose the fields that appear in the listing submit form. This includes both custom fields and Features & Amenities. […]
Remove before and after price label from submit with css
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”] […]
How to remove Area from submit form
From theme options: Help – https://help.wprentals.org/article/1-30-how-to-manage-submit-form-fields-and-mandatory-fields/ With CSS: [id=”property_area_front”] { display: none; }
Remove cleaning fee from listing submission form
From Theme Options: Go to Payments & Submit > Listing Submit Page. Deselect the Cleaning Fee option under “Select the Fields for listing submission.” For more detailed instructions: Help – How to Manage Submit Form Fields and Mandatory Fields Using Custom CSS: If you want to hide the cleaning fee field via CSS, you can […]
Remove weekend price from submit form
From theme options: Help – https://help.wprentals.org/article/1-30-how-to-manage-submit-form-fields-and-mandatory-fields/ From Custom CSS [for=”price_per_weekeend”] { display: none; } [id=”price_per_weekeend”] { display: none; }
Remove Area / Neighborhood from submit listing form
From theme options: Help – https://help.wprentals.org/article/1-30-how-to-manage-submit-form-fields-and-mandatory-fields/ From Custom CSS [for=”property_area_front”] { display: none; } [id=”property_area_front”] { display: none; }
Add or Remove the Video field from submit listing form
To manage the video field display in the submit form, you do that From theme options: Help – https://help.wprentals.org/article/1-30-how-to-manage-submit-form-fields-and-mandatory-fields/ If you let the video field in the submit form, you can add the Video ID from youtube or Vimeo as in this screenshot from Add Listing -> Images -> Video section. See more details here.
Remove CITY FEE from submit form
From theme options: Help – https://help.wprentals.org/article/1-30-how-to-manage-submit-form-fields-and-mandatory-fields/ From Custom 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; }
Remove TAXES from submit listing form
From theme options: Help – https://help.wprentals.org/article/1-30-how-to-manage-submit-form-fields-and-mandatory-fields/ From Custom CSS [for=”property_taxes”] { display: none; } [id=”property_taxes”] { display: none; }
Submit a Property from the User Dashboard (Frontend)
Property Submission in WpRentals Before reading this guide, check out these video tutorials: Create the Submission Page (Admin) If you haven’t imported demo content yet, you’ll need to manually create the Add New Property page in the admin. The Add New Property page will be shown to users in the following situations: For Non-Logged Users: […]