Easy Real Estate Plugin

PR Review: mhr-options-panelfixes-release-2.4.1

160 files changed · ~20,000 additions · ~3,500 deletions · Date: Feb 25, 2026

Reviewer: Usman Ali Qureshi

Executive Summary

This PR replaces the legacy ERE settings panel with a new declarative, config-driven options framework. Config arrays in includes/settings/config-files/ are loaded by ERE_Settings_Config, rendered by ERE_Settings, and saved via AJAX through ERE_Settings_Saver. A new JS file (ere-settings.js) handles tabs, conditions, sorter fields, color pickers, and AJAX save.

9
Critical Issues
10
Important Issues
5
Minor Issues
88/88
Old Options Mapped

🔴 Critical Issues (9)

1. Nonce Action String Mismatch — Save Will Fail

File: includes/settings/classes/class-ere-settings.php (line 45) + class-ere-settings-saver.php (line 31)

The nonce is created with action ere_save_settings but verified with action ere_save_settings_nonce. These must match or the save will always fail with a nonce verification error.

// In class-ere-settings.php (enqueue_assets):
'nonce' => wp_create_nonce( 'ere_save_settings' ),  // Action: ere_save_settings

// In class-ere-settings.php (render):
wp_nonce_field( 'ere_save_settings_nonce' );  // Action: ere_save_settings_nonce

// In class-ere-settings-saver.php:
check_ajax_referer( 'ere_save_settings_nonce', 'security' );  // Expects 'security' param

// In ere-settings.js:
formData += '&_wpnonce=' + formNonce;  // Sends as '_wpnonce', not 'security'

Fix: Use the same nonce action string everywhere. The JS must send the nonce as security (not _wpnonce) to match the saver's check_ajax_referer parameter.

2. Duplicate Function Declaration — ere_is_inspiry_membership_enabled

File: includes/functions/basic.php

The function ere_is_inspiry_membership_enabled() is defined twice with identical code. The function_exists() guard prevents a fatal error but this is dead code.

// First definition (correct)
if ( ! function_exists( 'ere_is_inspiry_membership_enabled' ) ) {
    function ere_is_inspiry_membership_enabled(): bool { ... }
}

// Second definition (DUPLICATE — remove this)
if ( ! function_exists( 'ere_is_inspiry_membership_enabled' ) ) {
    function ere_is_inspiry_membership_enabled(): bool { ... }  // ❌ Dead code
}

Fix: Delete the second duplicate definition.

3. Typo in Option Name — inspiry_respoeader_option

File: includes/settings/config-files/property/search.php

The name field contains a typo (respoeader) and doesn't match the id. This saves to the wrong wp_options key, breaking the Responsive Header Display setting.

'id'   => 'inspiry_respor_option',
'name' => 'inspiry_respoeader_option',  // ❌ Typo

Fix: Fix the name to match the intended option key (likely inspiry_responsive_header_option or match the id).

4. JavaScript Typo — preventDeefault()

File: js/ere-settings.js (line 396)

e.preventDeefault() has a double 'e'. This will throw a TypeError at runtime, completely breaking the click handler.

$( document ).on( 'click', '.ere-users-approval-filters a', function ( e ) {
    e.preventDeefault();  // ❌ TypeError: e.preventDeefault is not a function
    console.log( $( this ) );
} );

Fix: Change to e.preventDefault().

5. Unsanitized $_POST in settings-request-handler.php

File: includes/functions/settings-request-handler.php

Multiple direct $_POST accesses without wp_unslash() or proper sanitization. This is a WordPress VIP-level security requirement.

// ❌ No sanitization
update_option( 'rsl_settings', $_POST['rsl_settings'] );
update_option( 'ere_user_role_options', $_POST['user_role_options'] );
update_option( 'inspiry_user_sync', $_POST['ere_role_post_type_sync'] );
update_option( 'ere_forms_webhook_url', $_POST['ere_forms_webhook_url'] );

$inspiry_property_energy_classes = array_values( $_POST['inspiry_property_energy_classes'] );  // ❌

Fix: Every $_POST value must use wp_unslash() + type-appropriate sanitization (sanitize_text_field, sanitize_url, map_deep, etc.).

6. Generic Sanitization in ERE_Settings_Saver

File: includes/settings/classes/class-ere-settings-saver.php

sanitize_text_field() is used as a blanket fallback for ALL field types. This strips HTML from textarea fields, corrupts URLs, and mishandles color values.

// ❌ Current
return sanitize_text_field( $value );

// ✅ Should be type-aware:
// textarea → wp_kses_post() or sanitize_textarea_field()
// url → esc_url_raw()
// email → sanitize_email()
// number → intval() / floatval()
// color → sanitize_hex_color()

Fix: Reference the field type from the config and apply the correct sanitizer per type.

7. HTML Syntax Errors in Callback — Stray ?>

File: includes/settings/callbacks/user-approval-management.php

Missing space before closing brackets produces broken HTML with stray ?> in class attributes.

  • Fix: Remove the stray ?> from class attribute values.

    8. Toggle Field Rendering Bug — Extra Quote

    File: includes/settings/classes/class-ere-settings.php (~line 1093)

    The printf format string has an extra double-quote before %3$s, producing invalid HTML.

    printf(
        '',
        //                                                      ↑ extra quote
    );
    // Outputs: value="1" "checked='checked' />  ← invalid HTML

    Fix: Remove the extra double-quote: value="1" %3$s />.

    9. XSS Risk — Raw AJAX Response Injected as HTML

    File: js/ere-settings.js (line 434)

    The raw AJAX response is directly inserted into the DOM as HTML without escaping, enabling potential XSS if the response contains user-controlled data.

    // ❌ Direct HTML injection of response
    $this.after( '' + response + '' );
    
    // Also:
    usersList.html( request.data );     // line 514
    usersList.html( request.message );  // line 518

    Fix: Use .text() instead of string concatenation, or sanitize the response before inserting.

    🟠 Important Issues (10)

    10. console.log Left in Production JS

    File: js/ere-settings.js (lines 397, 858)

    Debug console.log() statements are left in production code at lines 397 and 858.

    Fix: Remove both console.log statements.

    11. Scripts/Styles Load on ALL Admin Pages

    File: includes/settings/classes/class-ere-settings.php (line 19, 29)

    enqueue_assets() hooks into admin_enqueue_scripts without checking the current screen. The JS and CSS load on every admin page, impacting performance.

    Fix: Add a screen check: if ( get_current_screen()->id !== 'toplevel_page_ere-settings' ) return;

    12. Missing Nonce in User Approval AJAX

    File: js/ere-settings.js (line 424-437)

    The update_user_approve_status AJAX call sends no nonce/security token. This is a CSRF vulnerability.

    Fix: Add nonce: ereSettings.nonce to the AJAX data object and verify it server-side.

    13. $_GET['tab'] Not Sanitized

    File: includes/settings/classes/class-ere-settings.php

    $_GET['tab'] is used without sanitize_key() or wp_unslash().

    Fix: Use sanitize_key( wp_unslash( $_GET['tab'] ) ).

    14. Commented-Out Dead Code

    File: includes/settings/loader.php + includes/functions/settings-request-handler.php

    Commented-out code left in production: //ERE_Settings_Config::load_configs_from_dir(...) and //add_action('wp_ajax_ere_save_settings',...)

    Fix: Remove all commented-out code before merge.

    15. sprintf Bug in Callback

    File: includes/settings/callbacks/user-approval-management.php

    sprintf($user->first_name, $user->last_name) uses first_name as format string with no specifiers, silently dropping last_name.

    Fix: Change to: $user->first_name . ' ' . $user->last_name

    16. echo ERE_VERSION Without Escaping

    File: includes/settings/classes/class-ere-settings.php (line ~144)

    echo ERE_VERSION; outputs without escaping. Per WPCS, all output must be escaped.

    Fix: Use echo esc_html( ERE_VERSION );

    17. Unescaped $condition_attr Echo

    File: includes/settings/classes/class-ere-settings.php

    echo $condition_attr; outputs the data-condition attribute without escaping. The phpcs:ignore comment acknowledges but doesn't fix it.

    Fix: Consider using echo wp_kses_post( $condition_attr ); or restructure to avoid raw echo.

    18. Dual Save Mechanism Confusion

    File: includes/functions/settings-request-handler.php

    Two save paths exist: ERE_Settings_Saver (new AJAX) and ere_ajax_save_settings() (old manual). The old hook is commented out but the function remains, creating confusion.

    Fix: Either fully remove the old save function or clearly mark it as deprecated.

    19. ucfirst() Output Not Escaped

    File: includes/settings/callbacks/user-approval-management.php

    echo ucfirst( $current_user_role ); outputs user role without esc_html().

    Fix: Wrap in esc_html().

    🟡 Minor Issues (5)

    20. Missing File Newlines

    File: loader.php, settings-request-handler.php

    Files missing trailing newline per WPCS.

    21. Short Array Syntax

    File: class-ere-settings-saver.php

    Uses [] instead of array() per WPCS.

    22. Inconsistent Text Domain

    File: class-ere-settings.php

    Uses 'easy-real-estate' string instead of ERE_TEXT_DOMAIN constant.

    23. Mixed Indentation

    File: class-ere-settings.php

    HTML output mixes tabs and spaces. WPCS requires tabs.

    24. Missing @package Tags

    File: Multiple new files

    Several new files lack the standard @package Easy_Real_Estate PHPDoc tag.

    ✅ Old Settings → New Options Panel Mapping

    All 88 option keys from the deleted old settings files are present in the new config system.

    Old Option Key Old File New Config File Status
    theme_currency_sign price.php config-files/property/price.php
    theme_currency_position price.php config-files/property/price.php
    ere_currency_sign_space price.php config-files/property/price.php
    theme_decimals price.php config-files/property/price.php
    theme_dec_point price.php config-files/property/price.php
    theme_thousands_sep price.php config-files/property/price.php
    ere_price_prefix price.php config-files/property/price.php
    ere_price_postfix price.php config-files/property/price.php
    theme_no_price_text price.php config-files/property/price.php
    ere_price_number_format_language price.php config-files/property/price.php
    ere_property_dual_price_status price.php config-files/property/price.php
    ere_agent_post_type_status post_types.php config-files/post_types.php
    ere_agency_post_type_status post_types.php config-files/post_types.php
    ere_owner_post_type_status post_types.php config-files/post_types.php
    ere_partner_post_type_status post_types.php config-files/post_types.php
    ere_slides_post_type_status post_types.php config-files/post_types.php
    inspiry_property_slug post_types.php config-files/post_types/url-slugs.php
    inspiry_agent_slug post_types.php config-files/post_types/url-slugs.php
    ere_agent_location_slug post_types.php config-files/post_types/url-slugs.php
    inspiry_agency_slug post_types.php config-files/post_types/url-slugs.php
    ere_agency_location_slug post_types.php config-files/post_types/url-slugs.php
    inspiry_property_city_slug post_types.php config-files/post_types/url-slugs.php
    inspiry_property_status_slug post_types.php config-files/post_types/url-slugs.php
    inspiry_property_type_slug post_types.php config-files/post_types/url-slugs.php
    inspiry_property_feature_slug post_types.php config-files/post_types/url-slugs.php
    realhomes_agents_verification_status post_types.php config-files/post_types/post-type-verification.php
    realhomes_agencies_verification_status post_types.php config-files/post_types/post-type-verification.php
    ere_owners_post_type_verification_status post_types.php config-files/post_types/post-type-verification.php
    ere_theme_map_type map.php config-files/map.php
    inspiry_google_maps_api_key map.php config-files/map.php
    ere_google_map_type map.php config-files/map.php
    inspiry_google_maps_styles map.php config-files/map.php
    ere_mapbox_api_key map.php config-files/map.php
    ere_mapbox_style map.php config-files/map.php
    theme_map_localization map.php config-files/map.php
    inspiry_properties_map_default_location map.php config-files/map.php
    theme_show_reCAPTCHA captcha.php config-files/miscellaneous/captcha.php
    theme_recaptcha_public_key captcha.php config-files/miscellaneous/captcha.php
    theme_recaptcha_private_key captcha.php config-files/miscellaneous/captcha.php
    inspiry_reCAPTCHA_type captcha.php config-files/miscellaneous/captcha.php
    ere_display_recaptcha_badge captcha.php config-files/miscellaneous/captcha.php
    ere_show_turnstile turnstile.php config-files/miscellaneous/turnstile.php
    ere_turnstile_site_key turnstile.php config-files/miscellaneous/turnstile.php
    ere_turnstile_secret_key turnstile.php config-files/miscellaneous/turnstile.php
    ere_turnstile_theme turnstile.php config-files/miscellaneous/turnstile.php
    ere_turnstile_size turnstile.php config-files/miscellaneous/turnstile.php
    inspiry_gdpr gdpr.php config-files/miscellaneous/gdpr.php
    inspiry_gdpr_label gdpr.php config-files/miscellaneous/gdpr.php
    inspiry_gdpr_text gdpr.php config-files/miscellaneous/gdpr.php
    inspiry_gdpr_validation_text gdpr.php config-files/miscellaneous/gdpr.php
    inspiry_gdpr_in_email gdpr.php config-files/miscellaneous/gdpr.php
    ere_forms_webhook_url webhooks.php config-files/miscellaneous/webhooks.php
    ere_contact_form_webhook_integration webhooks.php config-files/miscellaneous/webhooks.php
    ere_agent_form_webhook_integration webhooks.php config-files/miscellaneous/webhooks.php
    ere_agency_form_webhook_integration webhooks.php config-files/miscellaneous/webhooks.php
    inspiry_property_analytics_status property-analytics.php config-files/dashboard/analytics.php
    inspiry_property_analytics_chart_type property-analytics.php config-files/dashboard/analytics.php
    inspiry_property_analytics_time_period property-analytics.php config-files/dashboard/analytics.php
    inspiry_property_analytics_column property-analytics.php config-files/dashboard/analytics.php
    theme_show_social_menu social.php config-files/social/social-links.php
    theme_facebook_link social.php config-files/social/social-links.php
    theme_twitter_link social.php config-files/social/social-links.php
    theme_linkedin_link social.php config-files/social/social-links.php
    theme_instagram_link social.php config-files/social/social-links.php
    theme_youtube_link social.php config-files/social/social-links.php
    theme_pinterest_link social.php config-files/social/social-links.php
    theme_rss_link social.php config-files/social/social-links.php
    theme_skype_username social.php config-files/social/social-links.php
    theme_line_id social.php config-files/social/social-links.php
    rsl_settings social.php config-files/social/social-login.php
    inspiry_auto_property_id_check property.php config-files/property.php
    inspiry_auto_property_id_pattern property.php config-files/property.php
    ere_area_unit property.php config-files/property.php
    ere_lot_unit property.php config-files/property.php
    inspiry_property_energy_classes property.php config-files/property/energy-performance.php
    ere_registered_user_default_status users.php config-files/users/approval-settings.php
    ere_pending_users_error_statement users.php config-files/users/approval-settings.php
    ere_denied_users_error_statement users.php config-files/users/approval-settings.php
    ere_allow_users_change_role users.php config-files/users/user-roles.php
    inspiry_user_sync users.php config-files/users/user-roles.php
    inspiry_user_sync_avatar_fallback users.php config-files/users/user-roles.php
    ere_wp_default_user_roles_status users.php config-files/users/user-roles.php
    ere_allowed_user_roles users.php config-files/users/access-management.php
    ere_user_role_options users.php config-files/users/access-management.php
    ere_otp_max_login_attempts users.php config-files/social/social-login.php
    theme_submit_default_address property.php config-files/dashboard/property-submit.php
    theme_submit_default_location property.php config-files/dashboard/property-submit.php
    ere_measurement_base_unit map.php config-files/map.php
    ere_measurement_unit_switcher map.php config-files/map.php

    ⚠️ ID/Name Mismatches Requiring Verification

    The name maps to the DB key (backward compatible), id is the HTML element ID. This is intentional but should be documented.

    Config Field ID Config Name (DB Key) File
    ere_currency_sign_position theme_currency_position config-files/property/price.php
    ere_property_dual_price ere_property_dual_price_status config-files/property/price.php
    ere_users_change_role ere_allow_users_change_role config-files/users/user-roles.php
    ere_users_sync inspiry_user_sync config-files/users/user-roles.php
    ere_wp_default_user_roles ere_wp_default_user_roles_status config-files/users/user-roles.php
    inspiry_respor_option inspiry_respoeader_option (TYPO!) config-files/property/search.php

    📋 Customizer Keys → New Options Panel Cross-Reference

    Comprehensive audit of all 963 WordPress Customizer settings cross-referenced against the 1,006 new Options Panel config keys.

    793
    Matched
    55
    Missing (Functional)
    115
    Skipped (UI Only)
    142
    New Panel-Only

    Cross-referenced 963 Customizer keys (from theme + plugin) against 1006 new config keys. The 115 skipped keys are UI-only elements (separators, labels, notices) that don't store actual settings.

    ✅ Matched Customizer Keys (793)

    Customizer KeyCustomizer SourceNew Config FileStatus
    Header (47 keys)
    inspiry_banner_image_attachmentbanner.phpheader/banner.php
    inspiry_banner_image_positionbanner.phpheader/banner.php
    inspiry_banner_image_sizebanner.phpheader/banner.php
    inspiry_custom_header_positionbasics.phpheader/basic.php
    inspiry_header_variationbasics.phpheader/basic.php
    inspiry_login_bloginfo_displaylogin-register.phpheader/login-register.php
    inspiry_login_button_textlogin-register.phpheader/login-register.php
    inspiry_login_date_day_displaylogin-register.phpheader/login-register.php
    inspiry_login_forget_textlogin-register.phpheader/login-register.php
    inspiry_login_password_labellogin-register.phpheader/login-register.php
    inspiry_login_password_placeholderlogin-register.phpheader/login-register.php
    inspiry_login_quote_authorlogin-register.phpheader/login-register.php
    inspiry_login_quote_side_displaylogin-register.phpheader/login-register.php
    inspiry_login_quote_textlogin-register.phpheader/login-register.php
    inspiry_login_redirect_pagelogin-register.phpheader/login-register.php
    inspiry_login_register_pagelogin-register.phpheader/login-register.php
    inspiry_login_register_textlogin-register.phpheader/login-register.php
    inspiry_login_textlogin-register.phpheader/login-register.php
    inspiry_login_user_name_labellogin-register.phpheader/login-register.php
    inspiry_login_user_name_placeholderlogin-register.phpheader/login-register.php
    inspiry_register_button_textlogin-register.phpheader/login-register.php
    inspiry_register_email_labellogin-register.phpheader/login-register.php
    inspiry_register_email_placeholderlogin-register.phpheader/login-register.php
    inspiry_register_user_role_labellogin-register.phpheader/login-register.php
    inspiry_register_user_role_placeholderlogin-register.phpheader/login-register.php
    inspiry_restore_button_textlogin-register.phpheader/login-register.php
    inspiry_restore_password_placeholderlogin-register.phpheader/login-register.php
    inspiry_update_sticky_header_nav_linksbasics.phpheader/basic.php
    realhomes_custom_headerbasics.phpheader/basic.php
    realhomes_custom_responsive_headerbasics.phpheader/basic.php
    realhomes_custom_sticky_headerbasics.phpheader/basic.php
    realhomes_email_confirmation_before_loginlogin-register.phpheader/login-register.php
    realhomes_header_layoutbasics.phpheader/basic.php
    realhomes_login_register_dialog_labellogin-register.phpheader/login-register.php
    realhomes_mobile_custom_sticky_headerbasics.phpheader/basic.php
    realhomes_mobile_sticky_headerbasics.phpheader/basic.php
    realhomes_registration_notification_section_labellogin-register.phpheader/login-register.php
    realhomes_sticky_header_logobasics.phpheader/basic.php
    realhomes_sticky_header_retina_logobasics.phpheader/basic.php
    theme_banner_titlesbanner.phpheader/banner.php
    theme_enable_user_navlogin-register.phpheader/login-register.php
    theme_general_banner_imagebanner.phpheader/banner.php
    theme_header_emailcontact-information.phpheader/contact.php
    theme_header_phonecontact-information.phpheader/contact.php
    theme_header_phone_iconcontact-information.phpheader/contact.php
    theme_login_modal_backgroundlogin-register.phpheader/login-register.php
    theme_sticky_headerbasics.phpheader/basic.php
    Footer (14 keys)
    inspiry_copyright_text_displaytext.phpfooter/copyrights.php
    inspiry_enable_footer_logologo.phpfooter/logo.php
    inspiry_enable_footer_taglinelogo.phpfooter/logo.php
    inspiry_footer_logologo.phpfooter/logo.php
    inspiry_footer_taglinelogo.phpfooter/logo.php
    realhomes_custom_footer_is_selectedfooter.phpfooter/basic.php
    realhomes_footer_layoutfooter.phpfooter/basic.php
    realhomes_footer_retina_logologo.phpfooter/logo.php
    realhomes_site_footer_bgfooter.phpfooter/basic.php
    realhomes_site_footer_bg_opacityfooter.phpfooter/basic.php
    realhomes_site_footer_bg_opacity_mobilefooter.phpfooter/basic.php
    realhomes_sticky_footerfooter.phpfooter/basic.php
    theme_copyright_texttext.phpfooter/copyrights.php
    theme_designed_by_texttext.phpfooter/copyrights.php
    Property (206 keys)
    inspiry_agent_form_success_redirect_pageagent.phpproperty/single/agent.php
    inspiry_ajax_location_fieldsearch-form-locations.phpproperty/search/search-form-locations.php
    inspiry_beds_baths_search_behavioursearch-form-bed.phpproperty/search/bed-and-bath.php
    inspiry_child_properties_layoutchild-properties.phpproperty/single/child-properties.php
    inspiry_display_energy_performanceenergy-performance.phpproperty/single/energy-performance.php
    inspiry_display_virtual_tourvirtual-tour.phpproperty/single/virtual-tour.php
    inspiry_display_walkscorewalkscore.phpproperty/single/walkscore.php
    inspiry_display_yelp_nearby_placesyelp-nearby-places.phpproperty/single/yelp.php
    inspiry_energy_performance_titleenergy-performance.phpproperty/single/energy-performance.php
    inspiry_garages_search_behavioursearch-form-garages.phpproperty/search/garages.php
    inspiry_hide_empty_locationssearch-form-locations.phpproperty/search/search-form-locations.php
    inspiry_hide_property_addressproperties-templates-and-archive.phpproperty/templates-arthives.php
    inspiry_listing_header_variationproperties-templates-and-archive.phpproperty/templates-arthives.php
    inspiry_listing_skip_stickyproperties-templates-and-archive.phpproperty/templates-arthives.php
    inspiry_location_count_placeholder_1search-form-locations.phpproperty/search/search-form-locations.php
    inspiry_location_placeholder_1search-form-locations.phpproperty/search/search-form-locations.php
    inspiry_location_placeholder_2search-form-locations.phpproperty/search/search-form-locations.php
    inspiry_location_placeholder_3search-form-locations.phpproperty/search/search-form-locations.php
    inspiry_location_placeholder_4search-form-locations.phpproperty/search/search-form-locations.php
    inspiry_max_area_labelsearch-form-areas.phpproperty/search/area.php
    inspiry_max_area_placeholder_textsearch-form-areas.phpproperty/search/area.php
    inspiry_max_price_labelsearch-form-prices.phpproperty/search/prices.php
    inspiry_max_price_placeholdersearch-form-prices.phpproperty/search/prices.php
    inspiry_min_area_labelsearch-form-areas.phpproperty/search/area.php
    inspiry_min_area_placeholder_textsearch-form-areas.phpproperty/search/area.php
    inspiry_min_bathssearch-form-bed.phpproperty/search/bed-and-bath.php
    inspiry_min_baths_labelsearch-form-bed.phpproperty/search/bed-and-bath.php
    inspiry_min_baths_placeholdersearch-form-bed.phpproperty/search/bed-and-bath.php
    inspiry_min_bedssearch-form-bed.phpproperty/search/bed-and-bath.php
    inspiry_min_beds_labelsearch-form-bed.phpproperty/search/bed-and-bath.php
    inspiry_min_beds_placeholdersearch-form-bed.phpproperty/search/bed-and-bath.php
    inspiry_min_garagessearch-form-garages.phpproperty/search/garages.php
    inspiry_min_garages_labelsearch-form-garages.phpproperty/search/garages.php
    inspiry_min_garages_placeholdersearch-form-garages.phpproperty/search/garages.php
    inspiry_min_price_labelsearch-form-prices.phpproperty/search/prices.php
    inspiry_min_price_placeholdersearch-form-prices.phpproperty/search/prices.php
    inspiry_properties_on_search_mapproperties-search-page.phpproperty/search/search-page.php
    inspiry_property_agent_counter_placeholdersearch-form-property-agents.phpproperty/search/agents.php
    inspiry_property_agent_formagent.phpproperty/single/agent.php
    inspiry_property_agent_labelagent.phpproperty/single/agent.php
    inspiry_property_agent_placeholdersearch-form-property-agents.phpproperty/search/agents.php
    inspiry_property_card_variationproperties-templates-and-archive.phpproperty/templates-arthives.php
    inspiry_property_date_formatproperties-templates-and-archive.phpproperty/templates-arthives.php
    inspiry_property_features_displaybasics.phpproperty/single/basic.php
    inspiry_property_floor_plans_labelfloor-plan.phpproperty/single/floor-plans.php
    inspiry_property_map_marker_colormap.phpproperty/single/map.php
    inspiry_property_map_typemap.phpproperty/single/map.php
    inspiry_property_map_zoommap.phpproperty/single/map.php
    inspiry_property_sections_ordersections-manager.phpproperty/single/section-manager.php
    inspiry_property_sections_order_defaultsections-manager.phpproperty/single/section-manager.php
    inspiry_property_single_templatebasics.phpproperty/single/basic.php
    inspiry_property_status_placeholdersearch-form-property-status.phpproperty/search/property-status.php
    inspiry_property_type_placeholdersearch-form-property-types.phpproperty/search/property-type.php
    inspiry_property_types_counter_placeholdersearch-form-property-types.phpproperty/search/property-type.php
    inspiry_property_walkscore_titlewalkscore.phpproperty/single/walkscore.php
    inspiry_property_yelp_nearby_places_titleyelp-nearby-places.phpproperty/single/yelp.php
    inspiry_search_exclude_statusproperties-search-page.phpproperty/search/search-page.php
    inspiry_search_fields_feature_searchsearch-form-property-features.phpproperty/search/property-features.php
    inspiry_search_fields_main_rowsearch-form-basics.phpproperty/search/basic.php
    inspiry_search_map_typeproperties-search-page.phpproperty/search/search-page.php
    inspiry_search_results_layoutproperties-search-page.phpproperty/search/search-page.php
    inspiry_search_results_page_layoutproperties-search-page.phpproperty/search/search-page.php
    inspiry_section_label_properties_archivesproperties-templates-and-archive.phpproperty/templates-arthives.php
    inspiry_section_label_properties_cardsproperties-templates-and-archive.phpproperty/templates-arthives.php
    inspiry_sfoi_fields_main_rowsearch-form-basics.phpproperty/search/basic.php
    inspiry_sidebar_asf_collapsesearch-form-basics.phpproperty/search/basic.php
    inspiry_similar_propertiessimilar-properties.phpproperty/single/similar-properties.php
    inspiry_similar_properties_filterssimilar-properties.phpproperty/single/similar-properties.php
    inspiry_similar_properties_frontend_filterssimilar-properties.phpproperty/single/similar-properties.php
    inspiry_similar_properties_sorty_bysimilar-properties.phpproperty/single/similar-properties.php
    inspiry_single_property_banner_titlebanner.phpproperty/single/banner.php
    inspiry_term_descriptionproperties-templates-and-archive.phpproperty/templates-arthives.php
    inspiry_virtual_tour_titlevirtual-tour.phpproperty/single/virtual-tour.php
    inspiry_walkscore_api_keywalkscore.phpproperty/single/walkscore.php
    inspiry_yelp_api_keyyelp-nearby-places.phpproperty/single/yelp.php
    inspiry_yelp_distance_unityelp-nearby-places.phpproperty/single/yelp.php
    inspiry_yelp_search_limityelp-nearby-places.phpproperty/single/yelp.php
    inspiry_yelp_termsyelp-nearby-places.phpproperty/single/yelp.php
    realhomes_agent_callnow_button_labelagent.phpproperty/single/agent.php
    realhomes_agent_contact_linksagent.phpproperty/single/agent.php
    realhomes_agent_form_default_messageagent.phpproperty/single/agent.php
    realhomes_agent_section_titleagent.phpproperty/single/agent.php
    realhomes_agent_whatsapp_button_labelagent.phpproperty/single/agent.php
    realhomes_allow_svg_uploadproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_compare_button_iconproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_custom_action_buttonsproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_custom_header_position_propertybasics.phpproperty/single/basic.php
    realhomes_custom_meta_iconsproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_custom_property_meta_iconsproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_custom_responsive_header_property_singlebasics.phpproperty/single/basic.php
    realhomes_custom_search_formsearch-form-basics.phpproperty/search/basic.php
    realhomes_custom_search_form_margin_bottomsearch-form-basics.phpproperty/search/basic.php
    realhomes_custom_search_form_margin_topsearch-form-basics.phpproperty/search/basic.php
    realhomes_custom_search_form_max_widthsearch-form-basics.phpproperty/search/basic.php
    realhomes_display_schedule_a_tourschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_display_schedule_a_tour_forschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_elementor_property_archive_templateproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_elementor_property_single_templatebasics.phpproperty/single/basic.php
    realhomes_enable_report_propertyreport-property.phpproperty/single/report-property.php
    realhomes_favourite_button_iconproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_geolocation_labelsearch-form-basics.phpproperty/search/basic.php
    realhomes_geolocation_placeholder_textsearch-form-basics.phpproperty/search/basic.php
    realhomes_global_ajax_paginationproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_google_map_link_displaymap.phpproperty/single/map.php
    realhomes_google_map_link_textmap.phpproperty/single/map.php
    realhomes_grid_fullwidth_template_columnproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_grid_template_columnproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_hide_empty_property_typessearch-form-property-types.phpproperty/search/property-type.php
    realhomes_hide_filter_with_zero_propertiessimilar-properties.phpproperty/single/similar-properties.php
    realhomes_image_button_iconproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_listing_views_counterproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_location_field_typesearch-form-locations.phpproperty/search/search-form-locations.php
    realhomes_lot_size_unitsearch-form-lot-size.phpproperty/search/lot-size.php
    realhomes_max_lot_size_labelsearch-form-lot-size.phpproperty/search/lot-size.php
    realhomes_max_lot_size_placeholder_textsearch-form-lot-size.phpproperty/search/lot-size.php
    realhomes_min_lot_size_labelsearch-form-lot-size.phpproperty/search/lot-size.php
    realhomes_min_lot_size_placeholder_textsearch-form-lot-size.phpproperty/search/lot-size.php
    realhomes_no_result_found_textproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_pagination_navigation_typeproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_print_button_iconproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_printable_additional_meta_fieldsprint.phpproperty/single/print.php
    realhomes_property_agency_counter_placeholdersearch-form-property-agency.phpproperty/search/agencies.php
    realhomes_property_agency_placeholdersearch-form-property-agency.phpproperty/search/agencies.php
    realhomes_property_card_variationproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_property_media_in_printprint.phpproperty/single/print.php
    realhomes_property_price_separatorproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_report_button_iconproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_rpm_form_child_options_titlereport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_custom_child_itemreport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_custom_child_item_titlereport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_emailreport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_email_response_textreport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_email_response_titlereport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_main_optionsreport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_parent_itemreport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_parent_item_child_optionsreport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_parent_item_titlereport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_submit_button_labelreport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_textarea_placeholderreport-property.phpproperty/single/report-property.php
    realhomes_rpm_form_user_emailreport-property.phpproperty/single/report-property.php
    realhomes_rpm_sub_titlereport-property.phpproperty/single/report-property.php
    realhomes_rpm_titlereport-property.phpproperty/single/report-property.php
    realhomes_sat_button_textschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_sat_date_placeholderschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_sat_email_placeholderschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_sat_message_placeholderschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_sat_name_placeholderschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_sat_phone_placeholderschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_sat_type_in_person_labelschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_sat_type_video_chat_labelschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_schedule_a_tour_titleschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_schedule_side_descriptionschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_schedule_time_slotsschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_schedule_tour_GDPR_statusschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_search_radius_range_initialsearch-form-locations.phpproperty/search/search-form-locations.php
    realhomes_search_radius_range_maxsearch-form-locations.phpproperty/search/search-form-locations.php
    realhomes_search_radius_range_minsearch-form-locations.phpproperty/search/search-form-locations.php
    realhomes_search_radius_range_typesearch-form-locations.phpproperty/search/search-form-locations.php
    realhomes_search_results_page_mapproperties-search-page.phpproperty/search/search-page.php
    realhomes_send_schedule_copy_to_adminschedule-a-tour.phpproperty/single/schedule-a-tour.php
    realhomes_share_button_iconproperty-meta-icons.phpproperty/custom-icons.php
    realhomes_similar_properties_tax_relationsimilar-properties.phpproperty/single/similar-properties.php
    realhomes_single_property_content_layoutbasics.phpproperty/single/basic.php
    realhomes_single_property_print_settingprint.phpproperty/single/print.php
    realhomes_single_property_printable_sectionsprint.phpproperty/single/print.php
    realhomes_single_property_section_stylebasics.phpproperty/single/basic.php
    realhomes_single_property_variationbasics.phpproperty/single/basic.php
    realhomes_taxonomy_name_before_titleproperties-templates-and-archive.phpproperty/templates-arthives.php
    realhomes_video_button_iconproperty-meta-icons.phpproperty/custom-icons.php
    theme_agent_detail_page_link_textagent.phpproperty/single/agent.php
    theme_area_unitsearch-form-areas.phpproperty/search/area.php
    theme_breadcrumbs_taxonomybreadcrumbs.phpproperty/single/breadcrumbs.php
    theme_common_notecommon-note.phpproperty/single/common-note.php
    theme_common_note_titlecommon-note.phpproperty/single/common-note.php
    theme_display_agent_contact_infoagent.phpproperty/single/agent.php
    theme_display_agent_descriptionagent.phpproperty/single/agent.php
    theme_display_agent_detail_page_linkagent.phpproperty/single/agent.php
    theme_display_agent_infoagent.phpproperty/single/agent.php
    theme_display_attachmentsattachments.phpproperty/single/attachments.php
    theme_display_common_notecommon-note.phpproperty/single/common-note.php
    theme_display_google_mapmap.phpproperty/single/map.php
    theme_display_property_breadcrumbsbreadcrumbs.phpproperty/single/breadcrumbs.php
    theme_display_similar_propertiessimilar-properties.phpproperty/single/similar-properties.php
    theme_display_videovideo.phpproperty/single/video.php
    theme_listing_default_sortproperties-templates-and-archive.phpproperty/templates-arthives.php
    theme_listing_excerpt_lengthproperties-templates-and-archive.phpproperty/templates-arthives.php
    theme_listing_layoutproperties-templates-and-archive.phpproperty/templates-arthives.php
    theme_listing_moduleproperties-templates-and-archive.phpproperty/templates-arthives.php
    theme_location_select_numbersearch-form-locations.phpproperty/search/search-form-locations.php
    theme_location_title_1search-form-locations.phpproperty/search/search-form-locations.php
    theme_location_title_2search-form-locations.phpproperty/search/search-form-locations.php
    theme_location_title_3search-form-locations.phpproperty/search/search-form-locations.php
    theme_location_title_4search-form-locations.phpproperty/search/search-form-locations.php
    theme_maximum_price_valuessearch-form-prices.phpproperty/search/prices.php
    theme_maximum_price_values_for_rentsearch-form-prices.phpproperty/search/prices.php
    theme_message_copy_emailagent.phpproperty/single/agent.php
    theme_minimum_price_valuessearch-form-prices.phpproperty/search/prices.php
    theme_minimum_price_values_for_rentsearch-form-prices.phpproperty/search/prices.php
    theme_number_of_propertiesproperties-templates-and-archive.phpproperty/templates-arthives.php
    theme_number_of_similar_propertiessimilar-properties.phpproperty/single/similar-properties.php
    theme_property_attachments_titleattachments.phpproperty/single/attachments.php
    theme_property_map_titlemap.phpproperty/single/map.php
    theme_property_video_titlevideo.phpproperty/single/video.php
    theme_send_message_copyagent.phpproperty/single/agent.php
    theme_similar_properties_titlesimilar-properties.phpproperty/single/similar-properties.php
    theme_status_for_rentsearch-form-prices.phpproperty/search/prices.php
    Dashboard (67 keys)
    inspiry_allowed_max_attachmentsdashboard.phpdashboard/property-submit.php
    inspiry_checkout_badges_displaydashboard.phpdashboard/memberships.php
    inspiry_current_package_btn_textdashboard.phpdashboard/memberships.php
    inspiry_dashboard_pagedashboard.phpdashboard/basic.php
    inspiry_dashboard_page_displaydashboard.phpdashboard/basic.php
    inspiry_dashboard_posts_per_pagedashboard.phpdashboard/basic.php
    inspiry_dashboard_submit_page_layoutdashboard.phpdashboard/property-submit.php
    inspiry_disable_submit_propertydashboard.phpdashboard/memberships.php
    inspiry_favorites_module_displaydashboard.phpdashboard/favorites.php
    inspiry_guest_submissiondashboard.phpdashboard/property-submit.php
    inspiry_login_on_favdashboard.phpdashboard/favorites.php
    inspiry_order_dialog_headingdashboard.phpdashboard/memberships.php
    inspiry_package_btn_textdashboard.phpdashboard/memberships.php
    inspiry_profile_module_displaydashboard.phpdashboard/profile.php
    inspiry_properties_module_displaydashboard.phpdashboard/my-properties.php
    inspiry_property_additional_detailsdashboard.phpdashboard/property-submit.php
    inspiry_property_submit_redirect_pagedashboard.phpdashboard/property-submit.php
    inspiry_show_submit_on_logindashboard.phpdashboard/property-submit.php
    inspiry_submit_max_number_imagesdashboard.phpdashboard/property-submit.php
    inspiry_submit_property_fieldsdashboard.phpdashboard/property-submit.php
    inspiry_submit_property_module_displaydashboard.phpdashboard/property-submit.php
    inspiry_submit_property_terms_pagedashboard.phpdashboard/property-submit.php
    inspiry_submit_property_terms_textdashboard.phpdashboard/property-submit.php
    inspiry_text_before_pricedashboard.phpdashboard/memberships.php
    inspiry_updated_property_statusdashboard.phpdashboard/property-submit.php
    inspiry_user_greeting_textdashboard.phpdashboard/basic.php
    realhomes_add_agency_module_displaydashboard.phpdashboard/agencies.php
    realhomes_add_agent_module_displaydashboard.phpdashboard/agents.php
    realhomes_after_agency_submit_redirect_pagedashboard.phpdashboard/agencies.php
    realhomes_after_agent_submit_redirect_pagedashboard.phpdashboard/agents.php
    realhomes_agencies_module_displaydashboard.phpdashboard/agencies.php
    realhomes_agency_submit_notice_emaildashboard.phpdashboard/agencies.php
    realhomes_agent_assignment_optiondashboard.phpdashboard/property-submit.php
    realhomes_agent_submit_notice_emaildashboard.phpdashboard/agents.php
    realhomes_agents_module_displaydashboard.phpdashboard/agents.php
    realhomes_auto_user_agent_assignmentdashboard.phpdashboard/property-submit.php
    realhomes_bookings_module_displaydashboard.phpdashboard/booking-reservations.php
    realhomes_dashboard_action_buttons_styledashboard.phpdashboard/basic.php
    realhomes_dashboard_action_buttons_text_hidedashboard.phpdashboard/basic.php
    realhomes_dashboard_action_buttons_text_hoverdashboard.phpdashboard/basic.php
    realhomes_dashboard_allow_favorites_list_sharedashboard.phpdashboard/favorites.php
    realhomes_dashboard_analytics_moduledashboard.phpdashboard/analytics.php
    realhomes_dashboard_color_schemedashboard.phpdashboard/styles.php
    realhomes_dashboard_frontpage_buttondashboard.phpdashboard/basic.php
    realhomes_dashboard_frontpage_button_labeldashboard.phpdashboard/basic.php
    realhomes_dashboard_frontpage_button_typedashboard.phpdashboard/basic.php
    realhomes_dashboard_header_searchdashboard.phpdashboard/basic.php
    realhomes_dashboard_logo_linkdashboard.phpdashboard/basic.php
    realhomes_default_selected_agentdashboard.phpdashboard/property-submit.php
    realhomes_default_selected_agent_backenddashboard.phpdashboard/property-submit.php
    realhomes_enable_edit_property_noticesdashboard.phpdashboard/property-submit.php
    realhomes_invoices_module_displaydashboard.phpdashboard/booking-reservations.php
    realhomes_order_dialog_descriptiondashboard.phpdashboard/memberships.php
    realhomes_property_activate_controlsdashboard.phpdashboard/my-properties.php
    realhomes_reservations_module_displaydashboard.phpdashboard/booking-reservations.php
    realhomes_submit_form_required_fieldsdashboard.phpdashboard/property-submit.php
    realhomes_submitted_agency_statusdashboard.phpdashboard/agencies.php
    realhomes_submitted_agent_statusdashboard.phpdashboard/agents.php
    realhomes_taxonomy_selection_methoddashboard.phpdashboard/property-submit.php
    realhomes_updated_agency_statusdashboard.phpdashboard/agencies.php
    realhomes_updated_agent_statusdashboard.phpdashboard/agents.php
    theme_enable_fav_buttondashboard.phpdashboard/favorites.php
    theme_restricted_leveldashboard.phpdashboard/basic.php
    theme_submit_button_textdashboard.phpdashboard/property-submit.php
    theme_submit_messagedashboard.phpdashboard/property-submit.php
    theme_submit_notice_emaildashboard.phpdashboard/property-submit.php
    theme_submitted_statusdashboard.phpdashboard/property-submit.php
    Styles (363 keys)
    inspiry_advance_search_arrow_and_textsearch-form.phpstyles/search-form.php
    inspiry_advance_search_btn_bgsearch-form.phpstyles/search-form.php
    inspiry_advance_search_btn_hover_bgsearch-form.phpstyles/search-form.php
    inspiry_advance_search_btn_textsearch-form.phpstyles/search-form.php
    inspiry_advance_search_btn_text_hoversearch-form.phpstyles/search-form.php
    inspiry_agents_background_colorhome-page.phpstyles/home-page.php
    inspiry_agents_home_sep_labelshome-page.phpstyles/home-page.php
    inspiry_agents_listed_props_colorhome-page.phpstyles/home-page.php
    inspiry_agents_phone_colorhome-page.phpstyles/home-page.php
    inspiry_agents_text_colorhome-page.phpstyles/home-page.php
    inspiry_agents_title_colorhome-page.phpstyles/home-page.php
    inspiry_agents_title_hover_colorhome-page.phpstyles/home-page.php
    inspiry_back_to_top_bg_colorbuttons.phpstyles/buttons.php
    inspiry_back_to_top_bg_hover_colorbuttons.phpstyles/buttons.php
    inspiry_back_to_top_colorbuttons.phpstyles/buttons.php
    inspiry_basic_core_note_twocore-colors.phpstyles/core-colors.php
    inspiry_body_fonttypography.phpstyles/typography.php
    inspiry_body_font_colorcore-colors.phpstyles/core-colors.php
    inspiry_body_font_weighttypography.phpstyles/typography.php
    inspiry_buttons_transition_stylebuttons.phpstyles/buttons.php
    inspiry_cta_btn_one_bghome-page.phpstyles/home-page.php
    inspiry_cta_btn_one_colorhome-page.phpstyles/home-page.php
    inspiry_cta_btn_two_bghome-page.phpstyles/home-page.php
    inspiry_cta_btn_two_colorhome-page.phpstyles/home-page.php
    inspiry_cta_contact_btn_one_bghome-page.phpstyles/home-page.php
    inspiry_cta_contact_btn_one_colorhome-page.phpstyles/home-page.php
    inspiry_cta_contact_btn_two_bghome-page.phpstyles/home-page.php
    inspiry_cta_contact_btn_two_colorhome-page.phpstyles/home-page.php
    inspiry_cta_contact_desc_colorhome-page.phpstyles/home-page.php
    inspiry_cta_contact_home_sep_labelshome-page.phpstyles/home-page.php
    inspiry_cta_contact_title_colorhome-page.phpstyles/home-page.php
    inspiry_cta_desc_colorhome-page.phpstyles/home-page.php
    inspiry_cta_title_colorhome-page.phpstyles/home-page.php
    inspiry_currency_switcher_labelfloating-features.phpstyles/floating-features.php
    inspiry_default_stylescore-colors.phpstyles/core-colors.php
    inspiry_featured_properties_background_colorhome-page.phpstyles/home-page.php
    inspiry_featured_properties_sep_labelshome-page.phpstyles/home-page.php
    inspiry_featured_testimonials_sep_labelshome-page.phpstyles/home-page.php
    inspiry_features_background_colorhome-page.phpstyles/home-page.php
    inspiry_features_home_sep_labelshome-page.phpstyles/home-page.php
    inspiry_features_section_home_sep_labelshome-page.phpstyles/home-page.php
    inspiry_features_text_colorhome-page.phpstyles/home-page.php
    inspiry_footer_background_colorfooter.phpstyles/footer.php
    inspiry_footer_bgultra-footer.phpstyles/footer.php
    inspiry_gallery_button_bg_colorgallery.phpstyles/gallery.php
    inspiry_gallery_button_bg_hover_colorgallery.phpstyles/gallery.php
    inspiry_gallery_button_colorgallery.phpstyles/gallery.php
    inspiry_gallery_button_hover_colorgallery.phpstyles/gallery.php
    inspiry_gallery_hover_colorgallery.phpstyles/gallery.php
    inspiry_gallery_overlay_button_color_labelsgallery.phpstyles/gallery.php
    inspiry_grid_card_2_bottom_agency_hover_titleproperty-item.phpstyles/property-card.php
    inspiry_grid_card_2_bottom_agency_titleproperty-item.phpstyles/property-card.php
    inspiry_grid_card_2_bottom_agent_hover_titleproperty-item.phpstyles/property-card.php
    inspiry_grid_card_2_bottom_agent_titleproperty-item.phpstyles/property-card.php
    inspiry_grid_card_2_headingproperty-item.phpstyles/property-card.php
    inspiry_grid_card_3_bottom_agency_hover_titleproperty-item.phpstyles/property-card.php
    inspiry_grid_card_3_bottom_agency_titleproperty-item.phpstyles/property-card.php
    inspiry_grid_card_3_bottom_agent_bgproperty-item.phpstyles/property-card.php
    inspiry_grid_card_3_bottom_agent_hover_titleproperty-item.phpstyles/property-card.php
    inspiry_grid_card_3_bottom_agent_titleproperty-item.phpstyles/property-card.php
    inspiry_grid_card_3_headingproperty-item.phpstyles/property-card.php
    inspiry_grid_card_common_headingproperty-item.phpstyles/property-card.php
    inspiry_grid_card_featured_tag_bg_colorproperty-item.phpstyles/property-card.php
    inspiry_grid_card_featured_tag_colorproperty-item.phpstyles/property-card.php
    inspiry_grid_card_status_tag_bg_colorproperty-item.phpstyles/property-card.php
    inspiry_grid_card_status_tag_colorproperty-item.phpstyles/property-card.php
    inspiry_grid_card_trend_tag_bg_colorproperty-item.phpstyles/property-card.php
    inspiry_grid_card_trend_tag_colorproperty-item.phpstyles/property-card.php
    inspiry_heading_fonttypography.phpstyles/typography.php
    inspiry_heading_font_colorcore-colors.phpstyles/core-colors.php
    inspiry_heading_font_weighttypography.phpstyles/typography.php
    inspiry_home_agents_desc_colorhome-page.phpstyles/home-page.php
    inspiry_home_agents_title_colorhome-page.phpstyles/home-page.php
    inspiry_home_agents_title_span_colorhome-page.phpstyles/home-page.php
    inspiry_home_cta_bg_colorhome-page.phpstyles/home-page.php
    inspiry_home_cta_sep_labelshome-page.phpstyles/home-page.php
    inspiry_home_feature_text_colorhome-page.phpstyles/home-page.php
    inspiry_home_feature_title_colorhome-page.phpstyles/home-page.php
    inspiry_home_features_background_colorshome-page.phpstyles/home-page.php
    inspiry_home_features_desc_colorhome-page.phpstyles/home-page.php
    inspiry_home_features_title_colorhome-page.phpstyles/home-page.php
    inspiry_home_features_title_span_colorhome-page.phpstyles/home-page.php
    inspiry_home_news_background_colorshome-page.phpstyles/home-page.php
    inspiry_home_news_desc_colorhome-page.phpstyles/home-page.php
    inspiry_home_news_title_colorhome-page.phpstyles/home-page.php
    inspiry_home_news_title_span_colorhome-page.phpstyles/home-page.php
    inspiry_home_partners_background_colorshome-page.phpstyles/home-page.php
    inspiry_home_partners_desc_colorhome-page.phpstyles/home-page.php
    inspiry_home_partners_title_colorhome-page.phpstyles/home-page.php
    inspiry_home_partners_title_span_colorhome-page.phpstyles/home-page.php
    inspiry_home_properties_background_colorhome-page.phpstyles/home-page.php
    inspiry_home_properties_desc_colorhome-page.phpstyles/home-page.php
    inspiry_home_properties_sep_labelshome-page.phpstyles/home-page.php
    inspiry_home_properties_title_colorhome-page.phpstyles/home-page.php
    inspiry_home_properties_title_span_colorhome-page.phpstyles/home-page.php
    inspiry_home_responsive_header_labelsultra-header-styles.phpstyles/header.php
    inspiry_language_switcher_labelfloating-features.phpstyles/floating-features.php
    inspiry_main_menu_hover_bgultra-header-styles.phpstyles/header.php
    inspiry_news_home_sep_labelshome-page.phpstyles/home-page.php
    inspiry_partners_home_sep_labelshome-page.phpstyles/home-page.php
    inspiry_post_border_colornews.phpstyles/news.php
    inspiry_post_meta_bgnews.phpstyles/news.php
    inspiry_post_meta_colornews.phpstyles/news.php
    inspiry_post_meta_hover_colornews.phpstyles/news.php
    inspiry_post_text_colornews.phpstyles/news.php
    inspiry_post_title_colornews.phpstyles/news.php
    inspiry_post_title_hover_colornews.phpstyles/news.php
    inspiry_property_compare_icon_colorproperty-item.phpstyles/property-card.php
    inspiry_property_compare_icon_hover_colorproperty-item.phpstyles/property-card.php
    inspiry_property_favorite_icon_colorproperty-item.phpstyles/property-card.php
    inspiry_property_favorite_icon_hover_colorproperty-item.phpstyles/property-card.php
    inspiry_property_featured_label_bgproperty-item.phpstyles/property-card.php
    inspiry_property_featured_label_colorproperty-item.phpstyles/property-card.php
    inspiry_property_grid_card_address_colorproperty-item.phpstyles/property-card.php
    inspiry_property_grid_card_address_hover_colorproperty-item.phpstyles/property-card.php
    inspiry_property_image_overlayproperty-item.phpstyles/property-card.php
    inspiry_property_meta_heading_colorproperty-item.phpstyles/property-card.php
    inspiry_property_meta_icon_colorproperty-item.phpstyles/property-card.php
    inspiry_property_tooltip_bgcolorproperty-item.phpstyles/property-card.php
    inspiry_property_tooltip_colorproperty-item.phpstyles/property-card.php
    inspiry_scroll_to_top_separatorbuttons.phpstyles/buttons.php
    inspiry_search_form_active_textsearch-form.phpstyles/search-form.php
    inspiry_search_form_primary_colorsearch-form.phpstyles/search-form.php
    inspiry_search_form_secondary_colorsearch-form.phpstyles/search-form.php
    inspiry_secondary_fonttypography.phpstyles/typography.php
    inspiry_secondary_font_weighttypography.phpstyles/typography.php
    inspiry_slider_featured_label_bgslider.phpstyles/slider.php
    inspiry_slider_meta_heading_colorslider.phpstyles/slider.php
    inspiry_slider_meta_icon_colorslider.phpstyles/slider.php
    inspiry_slider_meta_text_colorslider.phpstyles/slider.php
    inspiry_submit_button_border_colorbuttons.phpstyles/buttons.php
    inspiry_submit_button_border_hover_colorbuttons.phpstyles/buttons.php
    inspiry_testimonial_bghome-page.phpstyles/home-page.php
    inspiry_testimonial_bg_quotehome-page.phpstyles/home-page.php
    inspiry_testimonial_colorhome-page.phpstyles/home-page.php
    inspiry_testimonial_name_colorhome-page.phpstyles/home-page.php
    inspiry_testimonial_url_colorhome-page.phpstyles/home-page.php
    inspiry_top_menu_gradient_colorheader-styles.phpstyles/header.php
    realhomes_color_primary_lightcore-colors.phpstyles/core-colors.php
    realhomes_color_schemecore-colors.phpstyles/core-colors.php
    realhomes_color_secondary_lightcore-colors.phpstyles/core-colors.php
    realhomes_compare_icon_placeholder_colorproperty-item.phpstyles/property-card.php
    realhomes_favorite_icon_placeholder_colorproperty-item.phpstyles/property-card.php
    realhomes_form_button_bg_colorforms.phpstyles/forms.php
    realhomes_form_button_border_colorforms.phpstyles/forms.php
    realhomes_form_button_hover_bg_colorforms.phpstyles/forms.php
    realhomes_form_button_hover_border_colorforms.phpstyles/forms.php
    realhomes_form_button_hover_text_colorforms.phpstyles/forms.php
    realhomes_form_button_text_colorforms.phpstyles/forms.php
    realhomes_form_field_background_colorforms.phpstyles/forms.php
    realhomes_form_field_icon_colorforms.phpstyles/forms.php
    realhomes_form_field_icon_second_colorforms.phpstyles/forms.php
    realhomes_form_field_text_colorforms.phpstyles/forms.php
    realhomes_form_gdpr_text_colorforms.phpstyles/forms.php
    realhomes_form_label_colorforms.phpstyles/forms.php
    realhomes_form_textarea_background_colorforms.phpstyles/forms.php
    realhomes_form_textarea_text_colorforms.phpstyles/forms.php
    realhomes_global_headings_hover_colorcore-colors.phpstyles/core-colors.php
    realhomes_global_link_colorcore-colors.phpstyles/core-colors.php
    realhomes_global_link_hover_colorcore-colors.phpstyles/core-colors.php
    realhomes_grid_card_4_headingproperty-item.phpstyles/property-card.php
    realhomes_grid_card_4_price_colorproperty-item.phpstyles/property-card.php
    realhomes_grid_card_4_status_tag_bg_colorproperty-item.phpstyles/property-card.php
    realhomes_grid_card_4_status_tag_colorproperty-item.phpstyles/property-card.php
    realhomes_grid_card_5_headingproperty-item.phpstyles/property-card.php
    realhomes_grid_card_5_meta_colorproperty-item.phpstyles/property-card.php
    realhomes_grid_card_5_price_colorproperty-item.phpstyles/property-card.php
    realhomes_grid_card_5_status_tag_bg_colorproperty-item.phpstyles/property-card.php
    realhomes_grid_card_5_status_tag_colorproperty-item.phpstyles/property-card.php
    realhomes_grid_card_5_title_colorproperty-item.phpstyles/property-card.php
    realhomes_rating_percentage_active_colormisc.phpstyles/miscellaneous.php
    realhomes_rating_percentage_inactive_colormisc.phpstyles/miscellaneous.php
    realhomes_rating_stars_colormisc.phpstyles/miscellaneous.php
    realhomes_responsive_header_bottom_bg_colorheader-styles.phpstyles/header.php
    realhomes_round_cornersround-corners.phpstyles/round-corners.php
    realhomes_selection_bg_colorcore-colors.phpstyles/core-colors.php
    realhomes_sticky_header_color_schemeheader-styles.phpstyles/sticky-header.php
    realhomes_unrated_stars_colormisc.phpstyles/miscellaneous.php
    realhomes_wp_login_page_background_attachmentwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_imagewp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_image_position_xwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_image_position_ywp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_image_repeatwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_image_sizewp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_opacitywp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_overlay_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_background_sectionwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_bg_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_border_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_border_radiuswp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_border_widthwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_hover_bg_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_hover_border_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_hover_text_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_paddingwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_button_text_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_form_bg_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_form_border_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_form_border_radiuswp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_form_border_widthwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_form_button_sectionwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_form_fields_sectionwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_form_label_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_form_sectionwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_input_bg_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_input_border_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_input_border_radiuswp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_input_border_widthwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_input_font_sizewp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_input_text_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_link_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_link_hover_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_logowp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_logo_bottom_spacewp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_logo_displaywp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_logo_heightwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_logo_sectionwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_logo_top_spacewp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_logo_typewp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_logo_widthwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_site_title_colorwp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_styleswp-login-page.phpstyles/wp-login-page.php
    realhomes_wp_login_page_text_colorwp-login-page.phpstyles/wp-login-page.php
    theme_banner_bg_colorbanner.phpstyles/banner.php
    theme_banner_bg_overlay_colorbanner.phpstyles/banner.php
    theme_banner_bg_overlay_opacitybanner.phpstyles/banner.php
    theme_banner_sub_text_colorbanner.phpstyles/banner.php
    theme_banner_sub_title_bg_colorbanner.phpstyles/banner.php
    theme_banner_text_colorbanner.phpstyles/banner.php
    theme_banner_title_bg_colorbanner.phpstyles/banner.php
    theme_button_bg_colorbuttons.phpstyles/buttons.php
    theme_button_hover_bg_colorbuttons.phpstyles/buttons.php
    theme_button_hover_text_colorbuttons.phpstyles/buttons.php
    theme_compare_switcher_backgroundfloating-features.phpstyles/floating-features.php
    theme_compare_switcher_background_openfloating-features.phpstyles/floating-features.php
    theme_compare_switcher_selected_textfloating-features.phpstyles/floating-features.php
    theme_compare_switcher_text_openfloating-features.phpstyles/floating-features.php
    theme_compare_view_backgroundfloating-features.phpstyles/floating-features.php
    theme_compare_view_property_button_backgroundfloating-features.phpstyles/floating-features.php
    theme_compare_view_property_button_hoverfloating-features.phpstyles/floating-features.php
    theme_compare_view_property_button_textfloating-features.phpstyles/floating-features.php
    theme_compare_view_property_button_text_hoverfloating-features.phpstyles/floating-features.php
    theme_compare_view_property_title_colorfloating-features.phpstyles/floating-features.php
    theme_compare_view_property_title_hover_colorfloating-features.phpstyles/floating-features.php
    theme_compare_view_title_colorfloating-features.phpstyles/floating-features.php
    theme_core_color_blue_darkcore-colors.phpstyles/core-colors.php
    theme_core_color_blue_lightcore-colors.phpstyles/core-colors.php
    theme_core_color_orange_burntcore-colors.phpstyles/core-colors.php
    theme_core_color_orange_darkcore-colors.phpstyles/core-colors.php
    theme_core_color_orange_glowcore-colors.phpstyles/core-colors.php
    theme_core_color_orange_lightcore-colors.phpstyles/core-colors.php
    theme_core_mod_color_greencore-colors.phpstyles/core-colors.php
    theme_core_mod_color_green_darkcore-colors.phpstyles/core-colors.php
    theme_core_mod_color_orangecore-colors.phpstyles/core-colors.php
    theme_core_mod_color_orange_darkcore-colors.phpstyles/core-colors.php
    theme_currency_switcher_backgroundfloating-features.phpstyles/floating-features.php
    theme_currency_switcher_background_dropdownfloating-features.phpstyles/floating-features.php
    theme_currency_switcher_background_hover_dropdownfloating-features.phpstyles/floating-features.php
    theme_currency_switcher_background_openfloating-features.phpstyles/floating-features.php
    theme_currency_switcher_selected_textfloating-features.phpstyles/floating-features.php
    theme_currency_switcher_text_dropdownfloating-features.phpstyles/floating-features.php
    theme_currency_switcher_text_hover_dropdownfloating-features.phpstyles/floating-features.php
    theme_currency_switcher_text_openfloating-features.phpstyles/floating-features.php
    theme_disable_footer_bgfooter.phpstyles/footer.php
    theme_featured_prop_text_colorhome-page.phpstyles/home-page.php
    theme_featured_prop_title_colorhome-page.phpstyles/home-page.php
    theme_featured_prop_title_span_colorhome-page.phpstyles/home-page.php
    theme_floating_responsive_backgroundfloating-features.phpstyles/floating-features.php
    theme_footer_bg_imgfooter.phpstyles/footer.php
    theme_footer_border_colorfooter.phpstyles/footer.php
    theme_footer_widget_link_colorultra-footer.phpstyles/footer.php
    theme_footer_widget_link_hover_colorultra-footer.phpstyles/footer.php
    theme_footer_widget_text_colorultra-footer.phpstyles/footer.php
    theme_footer_widget_title_colorfooter.phpstyles/footer.php
    theme_footer_widget_title_hover_colorultra-footer.phpstyles/footer.php
    theme_header_bg_colorultra-header-styles.phpstyles/header.php
    theme_header_bg_color_responsiveheader-styles.phpstyles/header.php
    theme_header_border_colorheader-styles.phpstyles/header.php
    theme_header_email_color_responsiveheader-styles.phpstyles/header.php
    theme_header_email_hover_color_responsiveheader-styles.phpstyles/header.php
    theme_header_link_hover_colorheader-styles.phpstyles/header.php
    theme_header_menu_top_colorheader-styles.phpstyles/header.php
    theme_header_meta_bg_colorheader-styles.phpstyles/header.php
    theme_header_phone_color_responsiveheader-styles.phpstyles/header.php
    theme_header_phone_hover_color_responsiveheader-styles.phpstyles/header.php
    theme_header_site_logo_color_responsiveheader-styles.phpstyles/header.php
    theme_header_site_logo_hover_color_responsiveheader-styles.phpstyles/header.php
    theme_header_social_icon_colorultra-header-styles.phpstyles/header.php
    theme_header_social_icon_color_hoverultra-header-styles.phpstyles/header.php
    theme_header_tag_line_bg_color_responsiveheader-styles.phpstyles/header.php
    theme_header_tag_line_color_responsiveheader-styles.phpstyles/header.php
    theme_header_text_colorheader-styles.phpstyles/header.php
    theme_header_user_nav_border_color_responsiveheader-styles.phpstyles/header.php
    theme_header_user_nav_color_responsiveheader-styles.phpstyles/header.php
    theme_header_user_nav_hover_color_responsiveheader-styles.phpstyles/header.php
    theme_language_switcher_backgroundfloating-features.phpstyles/floating-features.php
    theme_language_switcher_background_dropdownfloating-features.phpstyles/floating-features.php
    theme_language_switcher_background_hover_dropdownfloating-features.phpstyles/floating-features.php
    theme_language_switcher_background_openfloating-features.phpstyles/floating-features.php
    theme_language_switcher_selected_textfloating-features.phpstyles/floating-features.php
    theme_language_switcher_text_dropdownfloating-features.phpstyles/floating-features.php
    theme_language_switcher_text_hover_dropdownfloating-features.phpstyles/floating-features.php
    theme_language_switcher_text_openfloating-features.phpstyles/floating-features.php
    theme_logo_responsive_text_colorheader-styles.phpstyles/header.php
    theme_logo_text_colorultra-header-styles.phpstyles/header.php
    theme_logo_text_hover_colorultra-header-styles.phpstyles/header.php
    theme_main_menu_text_colorultra-header-styles.phpstyles/header.php
    theme_main_menu_text_hover_colorultra-header-styles.phpstyles/header.php
    theme_menu_bg_colorultra-header-styles.phpstyles/header.php
    theme_menu_hover_bg_colorultra-header-styles.phpstyles/header.php
    theme_menu_hover_text_colorultra-header-styles.phpstyles/header.php
    theme_menu_text_colorultra-header-styles.phpstyles/header.php
    theme_modern_sticky_header_bg_colorultra-header-styles.phpstyles/sticky-header.php
    theme_modern_sticky_header_btn_colorheader-styles.phpstyles/sticky-header.php
    theme_modern_sticky_header_btn_hover_colorheader-styles.phpstyles/sticky-header.php
    theme_modern_sticky_header_btn_hover_text_colorheader-styles.phpstyles/sticky-header.php
    theme_modern_sticky_header_btn_text_colorheader-styles.phpstyles/sticky-header.php
    theme_modern_sticky_header_menu_colorheader-styles.phpstyles/sticky-header.php
    theme_modern_sticky_header_menu_text_hover_colorheader-styles.phpstyles/sticky-header.php
    theme_modern_sticky_header_site_title_colorheader-styles.phpstyles/sticky-header.php
    theme_modern_sticky_header_site_title_hover_colorheader-styles.phpstyles/sticky-header.php
    theme_more_details_text_colorproperty-item.phpstyles/property-card.php
    theme_more_details_text_hover_colorproperty-item.phpstyles/property-card.php
    theme_nav_bg_color_hover_responsiveheader-styles.phpstyles/header.php
    theme_nav_bg_color_responsiveheader-styles.phpstyles/header.php
    theme_nav_text_color_hover_responsiveheader-styles.phpstyles/header.php
    theme_nav_text_color_responsiveheader-styles.phpstyles/header.php
    theme_phone_bg_colorheader-styles.phpstyles/header.php
    theme_phone_icon_bg_colorheader-styles.phpstyles/header.php
    theme_phone_text_colorultra-header-styles.phpstyles/header.php
    theme_phone_text_color_hoverultra-header-styles.phpstyles/header.php
    theme_property_desc_text_colorproperty-item.phpstyles/property-card.php
    theme_property_item_bg_colorproperty-item.phpstyles/property-card.php
    theme_property_item_border_colorproperty-item.phpstyles/property-card.php
    theme_property_meta_bg_colorproperty-item.phpstyles/property-card.php
    theme_property_meta_text_colorproperty-item.phpstyles/property-card.php
    theme_property_price_bg_colorproperty-item.phpstyles/property-card.php
    theme_property_price_text_colorproperty-item.phpstyles/property-card.php
    theme_property_status_bg_colorproperty-item.phpstyles/property-card.php
    theme_property_status_text_colorproperty-item.phpstyles/property-card.php
    theme_property_title_colorproperty-item.phpstyles/property-card.php
    theme_property_title_hover_colorproperty-item.phpstyles/property-card.php
    theme_responsive_header_bg_colorheader-styles.phpstyles/header.php
    theme_responsive_menu_bg_colorultra-header-styles.phpstyles/header.php
    theme_responsive_menu_icon_colorultra-header-styles.phpstyles/header.php
    theme_responsive_menu_text_colorultra-header-styles.phpstyles/header.php
    theme_responsive_menu_text_hover_colorultra-header-styles.phpstyles/header.php
    theme_responsive_phone_text_colorheader-styles.phpstyles/header.php
    theme_responsive_phone_text_color_hoverheader-styles.phpstyles/header.php
    theme_responsive_submit_button_bgultra-header-styles.phpstyles/header.php
    theme_responsive_submit_button_bg_hoverultra-header-styles.phpstyles/header.php
    theme_responsive_submit_button_colorultra-header-styles.phpstyles/header.php
    theme_responsive_submit_button_color_hoverultra-header-styles.phpstyles/header.php
    theme_slide_desc_text_colorslider.phpstyles/slider.php
    theme_slide_know_more_bg_colorslider.phpstyles/slider.php
    theme_slide_know_more_hover_bg_colorslider.phpstyles/slider.php
    theme_slide_know_more_text_colorslider.phpstyles/slider.php
    theme_slide_price_colorslider.phpstyles/slider.php
    theme_slide_title_colorslider.phpstyles/slider.php
    theme_slide_title_hover_colorslider.phpstyles/slider.php
    theme_tagline_bg_colorheader-styles.phpstyles/header.php
    theme_tagline_text_colorheader-styles.phpstyles/header.php
    Miscellaneous (20 keys)
    ere_email_color_schemeform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_background_colorform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_body_link_colorform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_footer_link_colorform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_footer_textform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_footer_text_colorform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_header_contentform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_header_imageform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_header_titleform-handlers.phpmiscellaneous/email-templates.php
    ere_email_template_header_title_colorform-handlers.phpmiscellaneous/email-templates.php
    inspiry_compare_action_notificationcompare-properties.phpmiscellaneous/floating-features.php
    inspiry_compare_button_textcompare-properties.phpmiscellaneous/floating-features.php
    inspiry_compare_view_titlecompare-properties.phpmiscellaneous/floating-features.php
    inspiry_default_floating_bar_displayfloating-features.phpmiscellaneous/floating-features.php
    inspiry_default_floating_buttonfloating-features.phpmiscellaneous/floating-features.php
    inspiry_floating_positionfloating-features.phpmiscellaneous/floating-features.php
    realhomes_comparable_property_fieldscompare-properties.phpmiscellaneous/floating-features.php
    realhomes_compare_head_typecompare-properties.phpmiscellaneous/floating-features.php
    realhomes_compare_sticky_head_typecompare-properties.phpmiscellaneous/floating-features.php
    theme_compare_properties_modulecompare-properties.phpmiscellaneous/floating-features.php
    Pages (63 keys)
    inspiry_agencies_header_variationagencies.phppages/agencies.php
    inspiry_agencies_properties_countagencies.phppages/agencies.php
    inspiry_agencies_sort_controlsagencies.phppages/agencies.php
    inspiry_agent_properties_countagents.phppages/agents.php
    inspiry_agent_single_propertiesagents.phppages/agents.php
    inspiry_agents_header_variationagents.phppages/agents.php
    inspiry_agents_sortingagents.phppages/agents.php
    inspiry_contact_header_variationcontact.phppages/contact-page.php
    inspiry_explode_listing_titlepages.phppages/general-pages.php
    inspiry_gallery_header_variationgallery.phppages/gallery-pages.php
    inspiry_gallery_properties_sortinggallery.phppages/gallery-pages.php
    inspiry_news_header_variationblog.phppages/blog.php
    inspiry_news_page_banner_title_displayblog.phppages/blog.php
    inspiry_number_of_agents_agencyagencies.phppages/agencies.php
    inspiry_number_posts_agencyagencies.phppages/agencies.php
    inspiry_pages_header_variationpages.phppages/general-pages.php
    inspiry_post_prev_next_linkblog.phppages/blog.php
    realhomes_agency_keyword_placeholderagencies.phppages/agencies.php
    realhomes_agency_locations_placeholderagencies.phppages/agencies.php
    realhomes_agency_searchagencies.phppages/agencies.php
    realhomes_agency_single_stats_chartsagencies.phppages/agencies.php
    realhomes_agency_stats_break_pointagencies.phppages/agencies.php
    realhomes_agency_stats_section_titleagencies.phppages/agencies.php
    realhomes_agent_keyword_placeholderagents.phppages/agents.php
    realhomes_agent_locations_placeholderagents.phppages/agents.php
    realhomes_agent_number_of_properties_placeholderagents.phppages/agents.php
    realhomes_agent_searchagents.phppages/agents.php
    realhomes_agent_single_stats_chartsagents.phppages/agents.php
    realhomes_agent_stats_break_pointagents.phppages/agents.php
    realhomes_agent_stats_section_titleagents.phppages/agents.php
    realhomes_agent_verified_placeholderagents.phppages/agents.php
    realhomes_agent_view_listing_linkagents.phppages/agents.php
    realhomes_blog_page_card_layoutblog.phppages/blog.php
    realhomes_blog_page_columnsblog.phppages/blog.php
    realhomes_blog_page_descriptionblog.phppages/blog.php
    realhomes_blog_page_grid_card_designblog.phppages/blog.php
    realhomes_blog_page_layoutblog.phppages/blog.php
    realhomes_blog_page_sidebarblog.phppages/blog.php
    realhomes_contact_map_water_colorcontact.phppages/contact-page.php
    realhomes_display_blog_metablog.phppages/blog.php
    realhomes_display_similar_postsblog.phppages/blog.php
    realhomes_elementor_agency_archive_templateagencies.phppages/agencies.php
    realhomes_elementor_agency_single_templateagencies.phppages/agencies.php
    realhomes_elementor_agent_archive_templateagents.phppages/agents.php
    realhomes_elementor_agent_single_templateagents.phppages/agents.php
    realhomes_gallery_properties_filtersgallery.phppages/gallery-pages.php
    realhomes_number_of_partnerscontact.phppages/contact-page.php
    realhomes_number_of_properties_valuesagents.phppages/agents.php
    realhomes_partners_section_desccontact.phppages/contact-page.php
    realhomes_partners_section_titlecontact.phppages/contact-page.php
    realhomes_post_excerpt_lengthblog.phppages/blog.php
    realhomes_post_layout_shiftblog.phppages/blog.php
    realhomes_show_partnerscontact.phppages/contact-page.php
    realhomes_single_agency_page_descriptionagencies.phppages/agencies.php
    realhomes_single_agent_page_descriptionagents.phppages/agents.php
    theme_custom_agency_contact_formagencies.phppages/agencies.php
    theme_custom_agent_contact_formagents.phppages/agents.php
    theme_gallery_banner_sub_titlegallery.phppages/gallery-pages.php
    theme_gallery_banner_titlegallery.phppages/gallery-pages.php
    theme_news_banner_sub_titleblog.phppages/blog.php
    theme_news_banner_titleblog.phppages/blog.php
    theme_number_of_properties_agentagents.phppages/agents.php
    theme_number_posts_agentagents.phppages/agents.php
    Miscellaneous.Php (12 keys)
    inspiry_properties_placeholder_imagemisc.phpmiscellaneous.php
    inspiry_property_detail_page_link_textmisc.phpmiscellaneous.php
    inspiry_scroll_to_topmisc.phpmiscellaneous.php
    inspiry_scroll_to_top_positionmisc.phpmiscellaneous.php
    inspiry_select2_no_result_stringmisc.phpmiscellaneous.php
    inspiry_stp_position_from_bottommisc.phpmiscellaneous.php
    inspiry_string_know_moremisc.phpmiscellaneous.php
    inspiry_unset_default_image_sizesmisc.phpmiscellaneous.php
    realhomes_404_main_imagemisc.phpmiscellaneous.php
    realhomes_404_main_titlemisc.phpmiscellaneous.php
    realhomes_404_sub_titlemisc.phpmiscellaneous.php
    realhomes_featured_labelmisc.phpmiscellaneous.php
    Property.Php (1 keys)
    realhomes_custom_header_property_singlebasics.phpproperty.php

    🔴 Missing Functional Customizer Keys (55)

    These Customizer keys represent actual settings but are NOT present in the new Options Panel config files.

    Customizer KeyCustomizer Source FileStatus
    inpsiry_partners_variationpartners.php
    inspiry_footer_partners_to_showpartners.php
    inspiry_list_tax_map_typeproperties-templates-and-archive.php
    inspiry_logo_filter_for_printsite-logo.php
    inspiry_property_sections_order_modsections-manager.php
    realhomes_agency_agents_countagencies.php
    realhomes_agency_agents_placeholderagencies.php
    realhomes_booking_form_checkin_placeholderbooking-form.php
    realhomes_booking_form_checkout_placeholderbooking-form.php
    realhomes_booking_form_email_placeholderbooking-form.php
    realhomes_booking_form_name_placeholderbooking-form.php
    realhomes_booking_form_phone_placeholderbooking-form.php
    realhomes_dashboard_body_fontdashboard.php
    realhomes_dashboard_body_font_weightdashboard.php
    realhomes_dashboard_heading_fontdashboard.php
    realhomes_dashboard_heading_font_weightdashboard.php
    realhomes_dashboard_menu_fontdashboard.php
    realhomes_dashboard_menu_font_weightdashboard.php
    realhomes_elementor_blog_custom_headerblog.php
    realhomes_elementor_blog_templateblog.php
    realhomes_elementor_login_modal_templatelogin-register.php
    realhomes_elementor_post_single_templateblog.php
    realhomes_footer_contacts_button_bg_colorultra-footer.php
    realhomes_footer_contacts_button_bg_hover_colorultra-footer.php
    realhomes_footer_contacts_button_colorultra-footer.php
    realhomes_footer_contacts_button_hover_colorultra-footer.php
    realhomes_footer_contacts_heading_colorultra-footer.php
    realhomes_footer_contacts_wrapper_bg_colorultra-footer.php
    realhomes_footer_emailcontact-information.php
    realhomes_footer_need_helpcontact-information.php
    realhomes_footer_phonecontact-information.php
    realhomes_footer_whatsappcontact-information.php
    realhomes_frontend_dashboard_logosite-logo.php
    realhomes_frontend_dashboard_logo_retinasite-logo.php
    realhomes_header_logo_widthsite-logo.php
    realhomes_mega_menubasics.php
    realhomes_property_single_booking_form_titlebooking-form.php
    realhomes_property_single_display_booking_formbooking-form.php
    realhomes_responsive_menu_container_bg_colorultra-header-styles.php
    realhomes_responsive_menu_item_border_colorultra-header-styles.php
    realhomes_responsive_menu_item_hover_bg_colorultra-header-styles.php
    realhomes_rvr_outdoor_featuresrvr-sections.php
    realhomes_ultra_tooltip_bgcolorultra-tooltip.php
    realhomes_ultra_tooltip_border_radiusultra-tooltip.php
    realhomes_ultra_tooltip_colorultra-tooltip.php
    realhomes_verified_agencies_placeholderagencies.php
    theme_button_text_colorbuttons.php
    theme_partners_titlepartners.php
    theme_show_partnerspartners.php
    theme_sitelogosite-logo.php
    theme_sitelogo_mobilesite-logo.php
    theme_sitelogo_retinasite-logo.php
    theme_sitelogo_retina_mobilesite-logo.php
    theme_switcher_language_displaylanguage-switcher.php
    theme_wpml_lang_switcherlanguage-switcher.php

    🟡 Skipped UI-Only Keys (115)

    These are Customizer-registered keys for UI separators, labels, and notice elements. They do not store settings and are intentionally omitted from the new config-driven panel.

    Show all 115 skipped keys
    ere_email_color_scheme_labelform-handlers.php⏭️
    ere_email_color_scheme_style_labelform-handlers.php⏭️
    inspiry_checkin_separatorsearch-form-basics.php⏭️
    inspiry_checkout_separatorsearch-form-basics.php⏭️
    inspiry_color_scheme_separatorcore-colors.php⏭️
    inspiry_compare_properties_labelfloating-features.php⏭️
    inspiry_core_note_separatorcore-colors.php⏭️
    inspiry_guests_separatorsearch-form-basics.php⏭️
    inspiry_header_email_labelcontact-information.php⏭️
    inspiry_heading_font_separatortypography.php⏭️
    inspiry_keyword_separatorsearch-form-basics.php⏭️
    inspiry_login_form_separatorlogin-register.php⏭️
    inspiry_property_field_titles_separatorbasics.php⏭️
    inspiry_property_share_titles_separatorbasics.php⏭️
    inspiry_register_form_separatorlogin-register.php⏭️
    inspiry_search_agent_separatorsearch-form-basics.php⏭️
    inspiry_search_url_separatorproperties-search-page.php⏭️
    inspiry_secondary_font_separatortypography.php⏭️
    inspiry_section_label_grid_templatesproperties-templates-and-archive.php⏭️
    inspiry_sidebar_asf_collapse_separatorsearch-form-basics.php⏭️
    inspiry_site_logo_separatorsite-logo.php⏭️
    pre_properties_views_option_separatorbasics.php⏭️
    realhomes_404_options_separatormisc.php⏭️
    realhomes_agency_verification_migrate_options_noticeagencies.php⏭️
    realhomes_agent_verification_migrate_options_noticeagents.php⏭️
    realhomes_booking_form_adults_labelbooking-form.php⏭️
    realhomes_booking_form_checkin_labelbooking-form.php⏭️
    realhomes_booking_form_checkout_labelbooking-form.php⏭️
    realhomes_booking_form_children_labelbooking-form.php⏭️
    realhomes_booking_form_email_labelbooking-form.php⏭️
    realhomes_booking_form_hide_details_labelbooking-form.php⏭️
    realhomes_booking_form_infants_labelbooking-form.php⏭️
    realhomes_booking_form_name_labelbooking-form.php⏭️
    realhomes_booking_form_payable_labelbooking-form.php⏭️
    realhomes_booking_form_phone_labelbooking-form.php⏭️
    realhomes_booking_form_show_details_labelbooking-form.php⏭️
    realhomes_booking_form_submit_labelbooking-form.php⏭️
    realhomes_compare_properties_panel_labelcompare-properties.php⏭️
    realhomes_compare_properties_section_labelcompare-properties.php⏭️
    realhomes_currency_switcher_section_labelfloating-features.php⏭️
    realhomes_dashboard_heading_font_separatordashboard.php⏭️
    realhomes_dashboard_logo_separatorsite-logo.php⏭️
    realhomes_dashboard_menu_font_separatordashboard.php⏭️
    realhomes_default_image_control_options_separatormisc.php⏭️
    realhomes_footer_contact_area_labelultra-footer.php⏭️
    realhomes_language_switcher_labellanguage-switcher.php⏭️
    realhomes_login_register_basics_labellogin-register.php⏭️
    realhomes_mobile_logo_separatorsite-logo.php⏭️
    realhomes_popup_panel_section_labelfloating-features.php⏭️
    realhomes_property_analytics_noticedashboard.php⏭️
    realhomes_property_single_booking_form_options_noticebooking-form.php⏭️
    realhomes_scroll_to_top_separatormisc.php⏭️
    realhomes_select2_options_separatormisc.php⏭️
    realhomes_selection_bg_color_separatorcore-colors.php⏭️
    realhomes_separator_2core-colors.php⏭️
    realhomes_sticky_header_labelsultra-header-styles.php⏭️
    realhomes_submit_property_additional_details_labeldashboard.php⏭️
    realhomes_submit_property_address_labeldashboard.php⏭️
    realhomes_submit_property_agent_info_labeldashboard.php⏭️
    realhomes_submit_property_agent_option_one_labeldashboard.php⏭️
    realhomes_submit_property_agent_option_three_labeldashboard.php⏭️
    realhomes_submit_property_agent_option_two_labeldashboard.php⏭️
    realhomes_submit_property_agent_option_two_sub_labeldashboard.php⏭️
    realhomes_submit_property_area_labeldashboard.php⏭️
    realhomes_submit_property_area_postfix_labeldashboard.php⏭️
    realhomes_submit_property_attachments_labeldashboard.php⏭️
    realhomes_submit_property_bathroom_labeldashboard.php⏭️
    realhomes_submit_property_bedroom_labeldashboard.php⏭️
    realhomes_submit_property_description_labeldashboard.php⏭️
    realhomes_submit_property_energy_class_labeldashboard.php⏭️
    realhomes_submit_property_energy_performance_labeldashboard.php⏭️
    realhomes_submit_property_ep_section_labeldashboard.php⏭️
    realhomes_submit_property_epc_current_rating_labeldashboard.php⏭️
    realhomes_submit_property_epc_potential_rating_labeldashboard.php⏭️
    realhomes_submit_property_features_labeldashboard.php⏭️
    realhomes_submit_property_find_address_labeldashboard.php⏭️
    realhomes_submit_property_floor_baths_labeldashboard.php⏭️
    realhomes_submit_property_floor_beds_labeldashboard.php⏭️
    realhomes_submit_property_floor_description_labeldashboard.php⏭️
    realhomes_submit_property_floor_image_labeldashboard.php⏭️
    realhomes_submit_property_floor_name_labeldashboard.php⏭️
    realhomes_submit_property_floor_plans_section_labeldashboard.php⏭️
    realhomes_submit_property_floor_price_labeldashboard.php⏭️
    realhomes_submit_property_floor_price_postfix_labeldashboard.php⏭️
    realhomes_submit_property_floor_size_labeldashboard.php⏭️
    realhomes_submit_property_floor_size_postfix_labeldashboard.php⏭️
    realhomes_submit_property_gallery_type_labeldashboard.php⏭️
    realhomes_submit_property_garage_labeldashboard.php⏭️
    realhomes_submit_property_homepage_slider_labeldashboard.php⏭️
    realhomes_submit_property_id_labeldashboard.php⏭️
    realhomes_submit_property_images_labeldashboard.php⏭️
    realhomes_submit_property_label_bg_colordashboard.php⏭️
    realhomes_submit_property_label_bg_subdashboard.php⏭️
    realhomes_submit_property_label_textdashboard.php⏭️
    realhomes_submit_property_label_text_subdashboard.php⏭️
    realhomes_submit_property_lot_size_labeldashboard.php⏭️
    realhomes_submit_property_lot_size_postfix_labeldashboard.php⏭️
    realhomes_submit_property_message_to_the_reviewer_labeldashboard.php⏭️
    realhomes_submit_property_old_price_labeldashboard.php⏭️
    realhomes_submit_property_owner_address_labeldashboard.php⏭️
    realhomes_submit_property_owner_contact_labeldashboard.php⏭️
    realhomes_submit_property_owner_labeldashboard.php⏭️
    realhomes_submit_property_owner_name_labeldashboard.php⏭️
    realhomes_submit_property_parent_property_labeldashboard.php⏭️
    realhomes_submit_property_price_labeldashboard.php⏭️
    realhomes_submit_property_price_postfix_labeldashboard.php⏭️
    realhomes_submit_property_price_prefix_labeldashboard.php⏭️
    realhomes_submit_property_status_labeldashboard.php⏭️
    realhomes_submit_property_title_labeldashboard.php⏭️
    realhomes_submit_property_type_labeldashboard.php⏭️
    realhomes_submit_property_virtual_tour_labeldashboard.php⏭️
    realhomes_submit_property_year_built_labeldashboard.php⏭️
    realhomes_user_menu_separatorultra-header-styles.php⏭️
    realhomes_users_options_noticedashboard.php⏭️
    theme_additional_details_title_separatorbasics.php⏭️

    🔵 New Panel-Only Keys (142)

    These keys exist only in the new Options Panel and were not previously registered in the Customizer or old ERE settings.

    Show all 142 new-only keys
    enable_social_login_facebooksocial/social-login.php🆕
    enable_social_login_googlesocial/social-login.php🆕
    enable_social_login_twittersocial/social-login.php🆕
    ere_compare_properties_setting_headingmiscellaneous/floating-features.php🆕
    ere_social_login_spacer_1social/social-links.php🆕
    facebook_app_idsocial/social-login.php🆕
    facebook_app_secretsocial/social-login.php🆕
    google_app_api_keysocial/social-login.php🆕
    google_app_client_idsocial/social-login.php🆕
    google_app_client_secretsocial/social-login.php🆕
    inspiry_add_to_fav_property_labelproperty/single/basic.php🆕
    inspiry_added_to_fav_property_labelproperty/single/basic.php🆕
    inspiry_address_lightbox_enableproperty/templates-arthives.php🆕
    inspiry_agent_field_labelproperty/search/agents.php🆕
    inspiry_any_textproperty/search/basic.php🆕
    inspiry_area_field_labelproperty/single/basic.php🆕
    inspiry_banner_heightstyles/banner.php🆕
    inspiry_bathrooms_field_labelproperty/single/basic.php🆕
    inspiry_bedrooms_field_labelproperty/single/basic.php🆕
    inspiry_checkin_labelproperty/search/basic.php🆕
    inspiry_checkin_placeholder_textproperty/search/basic.php🆕
    inspiry_checkout_labelproperty/search/basic.php🆕
    inspiry_checkout_placeholder_textproperty/search/basic.php🆕
    inspiry_compare_pagemiscellaneous/floating-features.php🆕
    inspiry_description_property_labelproperty/single/basic.php🆕
    inspiry_display_property_addressproperty/single/basic.php🆕
    inspiry_display_property_viewsproperty/single/property-views.php🆕
    inspiry_display_title_in_lightboxproperty/single/gallery.php🆕
    inspiry_featured_properties_on_topproperty/search/search-page.php🆕
    inspiry_footer_columnsfooter/layout.php🆕
    inspiry_gallery_slider_typeproperty/single/gallery.php🆕
    inspiry_garages_field_labelproperty/single/basic.php🆕
    inspiry_guests_labelproperty/search/basic.php🆕
    inspiry_guests_placeholder_textproperty/search/basic.php🆕
    inspiry_header_mod_variation_optionheader/basic.php🆕
    inspiry_image_size_full_widthproperty/single/gallery.php🆕
    inspiry_keyword_labelproperty/search/keyword.php🆕
    inspiry_keyword_placeholder_textproperty/search/keyword.php🆕
    inspiry_lot_size_field_labelproperty/single/basic.php🆕
    inspiry_masonry_gallery_count_textproperty/single/gallery.php🆕
    inspiry_mc_cost_prefixproperty/single/mortgage-calculator.php🆕
    inspiry_mc_displayproperty/single/mortgage-calculator.php🆕
    inspiry_mc_downpayment_defaultproperty/single/mortgage-calculator.php🆕
    inspiry_mc_downpayment_field_labelproperty/single/mortgage-calculator.php🆕
    inspiry_mc_first_field_descproperty/single/mortgage-calculator.php🆕
    inspiry_mc_first_field_displayproperty/single/mortgage-calculator.php🆕
    inspiry_mc_first_field_titleproperty/single/mortgage-calculator.php🆕
    inspiry_mc_first_field_valueproperty/single/mortgage-calculator.php🆕
    inspiry_mc_graph_typeproperty/single/mortgage-calculator.php🆕
    inspiry_mc_interest_defaultproperty/single/mortgage-calculator.php🆕
    inspiry_mc_interest_field_labelproperty/single/mortgage-calculator.php🆕
    inspiry_mc_price_defaultproperty/single/mortgage-calculator.php🆕
    inspiry_mc_price_field_labelproperty/single/mortgage-calculator.php🆕
    inspiry_mc_principle_field_labelproperty/single/mortgage-calculator.php🆕
    inspiry_mc_second_field_descproperty/single/mortgage-calculator.php🆕
    inspiry_mc_second_field_displayproperty/single/mortgage-calculator.php🆕
    inspiry_mc_second_field_titleproperty/single/mortgage-calculator.php🆕
    inspiry_mc_second_field_valueproperty/single/mortgage-calculator.php🆕
    inspiry_mc_term_defaultproperty/single/mortgage-calculator.php🆕
    inspiry_mc_term_field_labelproperty/single/mortgage-calculator.php🆕
    inspiry_mc_termsproperty/single/mortgage-calculator.php🆕
    inspiry_mortgage_calculator_statusesproperty/single/mortgage-calculator.php🆕
    inspiry_mortgage_calculator_titleproperty/single/mortgage-calculator.php🆕
    inspiry_overview_property_labelproperty/single/basic.php🆕
    inspiry_print_property_labelproperty/single/basic.php🆕
    inspiry_prop_detail_loginproperty/single/basic.php🆕
    inspiry_prop_id_field_labelproperty/single/basic.php🆕
    inspiry_properties_list_tax_on_mapproperty/templates-arthives.php🆕
    inspiry_property_card_metaproperty/templates-arthives.php🆕
    inspiry_property_detail_header_variationproperty/single/basic.php🆕
    inspiry_property_id_labelproperty/search/property-id.php🆕
    inspiry_property_id_placeholder_textproperty/search/property-id.php🆕
    inspiry_property_map_marker_typeproperty/single/map.php🆕
    inspiry_property_prev_next_linkproperty/single/basic.php🆕
    inspiry_property_ratingsproperty/single/basic.php🆕
    inspiry_property_status_labelproperty/search/property-status.php🆕
    inspiry_property_type_labelproperty/search/property-type.php🆕
    inspiry_property_views_titleproperty/single/property-views.php🆕
    inspiry_respoeader_optionproperty/search.php🆕
    inspiry_responsive_ddheader_optionproperty/single.php🆕
    inspiry_responsive_header_optionheader/basic.php🆕
    inspiry_rvr_guests_field_labelproperty/single/basic.php🆕
    inspiry_rvr_min_stay_labelproperty/single/basic.php🆕
    inspiry_search_advance_search_expanderproperty/search/basic.php🆕
    inspiry_search_button_textproperty/search/basic.php🆕
    inspiry_search_features_titleproperty/search/property-features.php🆕
    inspiry_search_form_mod_layout_optionsproperty/search/basic.php🆕
    inspiry_search_form_multiselect_agentsproperty/search/agents.php🆕
    inspiry_search_form_multiselect_locationsproperty/search/search-form-locations.php🆕
    inspiry_search_form_multiselect_typesproperty/search/property-type.php🆕
    inspiry_search_header_variationproperty/search/search-page.php🆕
    inspiry_search_pageproperty/search/search-page.php🆕
    inspiry_search_template_no_result_textproperty/search/search-page.php🆕
    inspiry_search_template_variationproperty/search/search-page.php🆕
    inspiry_sfoi_classesproperty/search/basic.php🆕
    inspiry_share_property_labelproperty/single/basic.php🆕
    inspiry_show_search_in_headerheader/search-form.php🆕
    inspiry_year_built_field_labelproperty/single/basic.php🆕
    realhomes_agency_field_labelproperty/search/agencies.php🆕
    realhomes_agency_ratingspages/agencies.php🆕
    realhomes_agent_ratingspages/agents.php🆕
    realhomes_ajax_search_resultsproperty/search/search-page.php🆕
    realhomes_available_sorting_optionsproperty/templates-arthives.php🆕
    realhomes_footer_designed_textfooter/copyrights.php🆕
    realhomes_guest_properties_views_page_descriptionproperty/single/basic.php🆕
    realhomes_guest_properties_views_page_titleproperty/single/basic.php🆕
    realhomes_guest_property_view_periodproperty/single/basic.php🆕
    realhomes_line_social_shareproperty/single/social.php🆕
    realhomes_no_results_taxonomiesproperty/search/search-page.php🆕
    realhomes_no_results_taxonomies_titleproperty/search/search-page.php🆕
    realhomes_no_results_titleproperty/search/search-page.php🆕
    realhomes_otp_pageheader/login-register.php🆕
    realhomes_properties_views_count_limitproperty/single/basic.php🆕
    realhomes_properties_views_limit_numberproperty/single/basic.php🆕
    realhomes_sample_agent_idpages/agents.php🆕
    realhomes_sample_property_idproperty/single/basic.php🆕
    realhomes_save_search_btn_labeldashboard/saved-searches.php🆕
    realhomes_save_search_btn_tooltipdashboard/saved-searches.php🆕
    realhomes_saved_search_email_footerdashboard/saved-searches.php🆕
    realhomes_saved_search_email_headerdashboard/saved-searches.php🆕
    realhomes_saved_search_email_subjectdashboard/saved-searches.php🆕
    realhomes_saved_searches_all_users_labeldashboard/saved-searches.php🆕
    realhomes_saved_searches_enableddashboard/saved-searches.php🆕
    realhomes_saved_searches_labeldashboard/saved-searches.php🆕
    realhomes_saved_searches_required_logindashboard/saved-searches.php🆕
    realhomes_search_emails_frequencydashboard/saved-searches.php🆕
    realhomes_search_features_display_typeproperty/search/property-features.php🆕
    realhomes_search_form_multiselect_agenciesproperty/search/agencies.php🆕
    realhomes_search_saved_btn_labeldashboard/saved-searches.php🆕
    search_form_locationsproperty/search/basic.php🆕
    theme_add_meta_tagsproperty/single/basic.php🆕
    theme_additional_details_titleproperty/single/basic.php🆕
    theme_child_properties_titleproperty/single/child-properties.php🆕
    theme_display_social_shareproperty/single/social.php🆕
    theme_home_advance_search_titleproperty/search/basic.php🆕
    theme_properties_on_searchproperty/search/search-page.php🆕
    theme_property_detail_variationproperty/single/agent.php🆕
    theme_property_features_titleproperty/single/basic.php🆕
    theme_search_fieldsproperty/search/basic.php🆕
    theme_search_moduleproperty/search/search-page.php🆕
    twitter_app_consumer_keysocial/social-login.php🆕
    twitter_app_consumer_secretsocial/social-login.php🆕

    📌 Action Items Summary

    Priority # Issue
    🔴 1 Fix nonce action string mismatch + JS param name
    🔴 2 Remove duplicate ere_is_inspiry_membership_enabled
    🔴 3 Fix inspiry_respoeader_option typo
    🔴 4 Fix preventDeefault() JS typo
    🔴 5-6 Add proper sanitization to $_POST handling + type-aware saver
    🔴 7-8 Fix HTML errors in callback + toggle field bug
    🔴 9 Fix XSS in AJAX response injection
    🟠 10-19 console.log removal, screen-specific enqueue, missing nonces, escaping, dead code, sprintf bug
    🟡 20-24 Newlines, array syntax, text domain, indentation, @package tags
    Easy Real Estate Plugin · PR Review by Usman Ali Qureshi · Generated with Antigravity · February 2026