Skip to Content

I’m getting Source not Found message on when migrating.

  1. Check if AIOS Listing Module V2 is installed and activated.
  2. AIOS Listing Module V2 file path or name should be AIOS_Listings/listing_module.php

Listing’s result and details page are broken after migration

  1. Check if AIOS Listing Module V2 is not modified. If it is, we recommend to restore your database and do manual approach.
  2. Check Listing’s details page backend if most of the fields have data if it has, there’s a high chance the the problem is in the way the pages are setup.
  3. If none of these works, restore the database and create a ticket and let product dev know.

What will happen if I restart the migration by clicking Restart Migration?

  • It will reread the previously Queued listings and the system will try to re migrate it again. All listings that are already migrated wil be remigrated again (There will be no duplicates, it will just overwrite existing listings)
  • It can also serve as a temporary backup in case there corrupted data during migration process.

How can we mark a particular listing as Rental?

Step 1. Go to Listing Details Page (Backend).

alt text

Step 2. Click Status tab and select For Lease

Step 3. Then go to Price Arrangement and set it to Monthly.

alt text

Step 4. Verify Listing Price and Sold Status

  • Make sure that List Price is not empty and Display Sold checkbox is unchecked.

How can we mark a particular listing as Sold?

Step 1. Access the Listing in the Admin Panel

  • Go to Listing Details Page (Backend).

Step 2. Update Listing Status to Sold

  • Click Status tab and select Sold or Go to Price > Check Display as Sold Checkbox.

alt text

alt text

Updated Form for Version 3.3.1

Interested in Listings

html
<div className="row listings-row"> <div className="col-md-6 listings-field"> <label for="interested_fname" className="hidden">First Name</label> [text* listings-fname id:interested_fname placeholder "First Name"] </div> <div className="col-md-6 listings-field"> <label for="interested_lname" className="hidden">Last Name</label> [text* listings-lname id:interested_lname placeholder "Last Name"] </div> <div className="col-md-6 listings-field"> <label for="interested_phone" className="hidden">Phone</label> [tel listings-phone id:interested_phone placeholder "Phone"] </div> <div className="col-md-6 listings-field"> <label for="interested_email" className="hidden">Email</label> [email listings-email id:interested_email placeholder "Email"] </div> <div className="col-md-12 listings-field"> <label for="interested_message" className="hidden">Message</label> [textarea listings-message id:interested_message placeholder "Message"] <div className="listings-field submit"> <button type="submit" aria-label="Submit" className="wpcf7-submit"> <i className="ai-font-paper-airplane-alt"></i> </button><span className="ajax-loader"></span> </div> </div> <div className="hidden"> <label for="interested_listing_address" className="hidden">Listing Address</label> [text listing-address id:interested_listing_address className:listing-address] </div> </div>

Request Information

html
<p className="modal-listings-paragraph">Tell us how to reach you and we'll get back in touch.</p> <div className="container-fluid modal-listings-form text-left"> <div className="row"> <div className="col-md-6"> <label for="first-name">First Name*</label> [text* first-name id:first-name] </div> <div className="col-md-6"> <label for="last-name">Last Name*</label> [text* last-name id:last-name] </div> </div> <div className="row"> <div className="col-md-6"> <label for="email">Email Address*</label> [email* email id:email] </div> <div className="col-md-6"> <label for="phone">Phone Number</label> [tel phone id:phone] </div> </div> <div className="row"> <div className="col-md-6"> <label for="approx_date_move">When are you moving?</label> [date approx_date_move id:approx_date_move className:text_datepicker placeholder "MM/DD/YYYY"] </div> <div className="col-md-6"> <label for="preferred_contact">Best way to reach you?</label> [select preferred_contact id:preferred_contact "Email and Phone" "Email" "Phone"] </div> </div> <div className="row"> <div className="col-md-12"> <label for="preferred_message">Your Message</label> [textarea message id:preferred_message] </div> </div> <div className="hide"> <label for="preferred_listing_subject">Listing Address</label> [text listing_subject className:listing_subject] </div> <div className="row mt-6"> <div className="col-md-12"> [submit "Send"] </div> </div> </div>

Schedule a Showing

html
<p className="modal-listings-paragraph">Tell us how to reach you and we'll get back in touch.</p> <div className="container-fluid text-left"> <div className="row"> <div className="col-md-6"> <label for="schedule_showing_fname" className="hidden">First Name*</label> [text* first-name id:schedule_showing_fname placeholder "First Name*"] </div> <div className="col-md-6"> <label for="schedule_showing_lname" className="hidden">Last Name*</label> [text* last-name id:schedule_showing_lname placeholder "Last Name*"] </div> </div> <div className="row"> <div className="col-md-6"> <label for="schedule_showing_email" className="hidden">Email Address*</label> [email* email id:schedule_showing_email placeholder "Email Address*"] </div> <div className="col-md-6"> <label for="schedule_showing_phone" className="hidden">Phone Number</label> [tel phone id:schedule_showing_phone placeholder "Phone Number"] </div> </div> <div className="row"> <div className="col-md-6"> <label for="schedule_showing_date">When are you available?</label> [date preferred_date id:schedule_showing_date className:text_datepicker placeholder "MM/DD/YYYY"] </div> <div className="col-md-6"> <label for="schedule_showing_alt_date">Are you available at another time?</label> [date alternate_date id:schedule_showing_alt_date className:text_datepicker placeholder "MM/DD/YYYY"] </div> </div> <div className="row"> <div className="col-md-12"> <label for="schedule_showing_message" className="hidden">Your Message</label> [textarea message id:schedule_showing_message placeholder "Your Message"] </div> </div> <div className="hide" > <label for="schedule_showing_listing_subject">Listing Address</label> [text listing_subject className:listing_subject] </div> <div className="row mt-6"> <div className="col-md-12"> [submit "Send"] </div> </div> </div>

How to Create Custom Themes for AIOS Listings?

To create a custom theme for AIOS Listings, follow these steps:

Step 1. Download the Boilerplate Theme

  • Download the custom theme file from the AIOS Listings settings page by clicking on “Boilerplate”.

Step 2. Extract and Organize Theme Files

  • Extract the theme zip file to either your child or parent theme.
    • Make sure that the file structure is organized correctly, with the “listings-templates” folder located within your theme’s root directory.
    • Example file structure: “listings-templates/my-custom-theme”.

Step 3. Customize Theme Files

  • Customize your theme by editing the various files within the “listings-templates” folder. This includes modifying the CSS stylesheets, JavaScript files, and other assets to fit your desired design.

Step 4. Save and Upload Theme

  • Save the modified files and re-upload the “listings-templates” folder to your theme’s root directory.

Step 5. Activate the Custom Theme

  • Activate your custom theme in the AIOS Listings settings to see your changes take effect.

By following these steps, you can create a custom theme for AIOS Listings that reflects your unique style and br /anding.

How to Add Compensation on Details Page

There are two ways to add Compensation on any listing details pages:

  1. By selecting a listing on the aios listings table.


    Wizard Guide

    Video Guide Click to see video


  2. By clicking the Edit Listings link in WP Admin Bar on any listing details page.


    Wizard Guide

    Video Guide Click to see video

⚠️
Warning

Leave fields as empty to use default values

How to Change Compensation Global Values on Settings

To change global values for compensation, just goto your wordpress admin area then:
AIOS Listings > Settings (sub-menu) > Settings (tab) then scroll down to bottom part (https://prnt.sc/bngrQwbcfe93)

Wizard Guide

Video Guide Click to see video

How to Setup Google Maps

To setup google maps on AIOS Listings, follow the steps below:

⚠️
Warning

The API key that you should use must be provided by the client

Last updated on