Submit Form

Login & Register

In the WpRentals theme the Login & Register forms are displayed as: Modal when User login menu option is enabled from Theme Options > General > Header. On modal is also displayed an image and a message that are setup on Header section as well. Mobile Login & Register form Shortcode inside page when is used  Login & Register shortcode […]

Location Options in Submit Listing Form

CONTENT Google Places Algolia Places Manual Input Dropdown When designing the listing submit the form you can set different options forCity, Neighborhood and Country details (located in DESCRIPTION step) Enable Google Places or Algolia Places for autocomplete city location (from city location select the theme saves city, area, and country) Disable Google places or Algolia Places […]

Listing Submit Page – How to manage submit form fields and mandatory fields

You can manage what fields to show in submit form from Theme options -> Listing Submit Page settings are detailed below Select what fields to show in submit form The list will include your custom fields and features and amenities Select what fields are mandatory If you add your custom fields or features and 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 field that shows before price a 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: […]

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 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=”cleaning_fee”] { display: none; } [id=”cleaning_fee”] { display: none!important; } [for=”cleaning_fee”] { display: none!important; } [id=”cleaning_fee_per_day”] { display: none; } [for=”cleaning_fee_per_day”] { display: none!important; } [id=”cleaning_fee”] { display: none; }

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 Property – from User Dashboard in front end

First, create the submission page in admin (if you didn’t import demo content) Add New Property page will show for users in 2 situations: 1. Non logged users Non logged users can click on Submit button in Menu to start add properties See here how to disable this option http://help.wprentals.org/article/how-to-hide-the-submit/ The form saves the property when […]