Easy Real Estate Plugin
mhr-options-panel
→ fixes-release-2.4.1
160 files changed · ~20,000 additions · ~3,500 deletions · Date: Feb 25, 2026
Reviewer: Usman Ali Qureshi
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.
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.
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.
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).
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().
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.).
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.
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.
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 />.
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( '' );
// 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.
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.
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;
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.
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'] ) ).
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.
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
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 );
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.
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.
File: includes/settings/callbacks/user-approval-management.php
echo ucfirst( $current_user_role ); outputs user role without esc_html().
Fix: Wrap in esc_html().
File: loader.php, settings-request-handler.php
Files missing trailing newline per WPCS.
File: class-ere-settings-saver.php
Uses [] instead of array() per
WPCS.
File: class-ere-settings.php
Uses 'easy-real-estate' string instead of
ERE_TEXT_DOMAIN constant.
File: class-ere-settings.php
HTML output mixes tabs and spaces. WPCS requires tabs.
File: Multiple new files
Several new files lack the standard
@package Easy_Real_Estate PHPDoc tag.
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 | ✅ |
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 |
Comprehensive audit of all 963 WordPress Customizer settings cross-referenced against the 1,006 new Options Panel config keys.
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.
| Customizer Key | Customizer Source | New Config File | Status |
|---|---|---|---|
| Header (47 keys) | |||
| inspiry_banner_image_attachment | banner.php | header/banner.php | ✅ |
| inspiry_banner_image_position | banner.php | header/banner.php | ✅ |
| inspiry_banner_image_size | banner.php | header/banner.php | ✅ |
| inspiry_custom_header_position | basics.php | header/basic.php | ✅ |
| inspiry_header_variation | basics.php | header/basic.php | ✅ |
| inspiry_login_bloginfo_display | login-register.php | header/login-register.php | ✅ |
| inspiry_login_button_text | login-register.php | header/login-register.php | ✅ |
| inspiry_login_date_day_display | login-register.php | header/login-register.php | ✅ |
| inspiry_login_forget_text | login-register.php | header/login-register.php | ✅ |
| inspiry_login_password_label | login-register.php | header/login-register.php | ✅ |
| inspiry_login_password_placeholder | login-register.php | header/login-register.php | ✅ |
| inspiry_login_quote_author | login-register.php | header/login-register.php | ✅ |
| inspiry_login_quote_side_display | login-register.php | header/login-register.php | ✅ |
| inspiry_login_quote_text | login-register.php | header/login-register.php | ✅ |
| inspiry_login_redirect_page | login-register.php | header/login-register.php | ✅ |
| inspiry_login_register_page | login-register.php | header/login-register.php | ✅ |
| inspiry_login_register_text | login-register.php | header/login-register.php | ✅ |
| inspiry_login_text | login-register.php | header/login-register.php | ✅ |
| inspiry_login_user_name_label | login-register.php | header/login-register.php | ✅ |
| inspiry_login_user_name_placeholder | login-register.php | header/login-register.php | ✅ |
| inspiry_register_button_text | login-register.php | header/login-register.php | ✅ |
| inspiry_register_email_label | login-register.php | header/login-register.php | ✅ |
| inspiry_register_email_placeholder | login-register.php | header/login-register.php | ✅ |
| inspiry_register_user_role_label | login-register.php | header/login-register.php | ✅ |
| inspiry_register_user_role_placeholder | login-register.php | header/login-register.php | ✅ |
| inspiry_restore_button_text | login-register.php | header/login-register.php | ✅ |
| inspiry_restore_password_placeholder | login-register.php | header/login-register.php | ✅ |
| inspiry_update_sticky_header_nav_links | basics.php | header/basic.php | ✅ |
| realhomes_custom_header | basics.php | header/basic.php | ✅ |
| realhomes_custom_responsive_header | basics.php | header/basic.php | ✅ |
| realhomes_custom_sticky_header | basics.php | header/basic.php | ✅ |
| realhomes_email_confirmation_before_login | login-register.php | header/login-register.php | ✅ |
| realhomes_header_layout | basics.php | header/basic.php | ✅ |
| realhomes_login_register_dialog_label | login-register.php | header/login-register.php | ✅ |
| realhomes_mobile_custom_sticky_header | basics.php | header/basic.php | ✅ |
| realhomes_mobile_sticky_header | basics.php | header/basic.php | ✅ |
| realhomes_registration_notification_section_label | login-register.php | header/login-register.php | ✅ |
| realhomes_sticky_header_logo | basics.php | header/basic.php | ✅ |
| realhomes_sticky_header_retina_logo | basics.php | header/basic.php | ✅ |
| theme_banner_titles | banner.php | header/banner.php | ✅ |
| theme_enable_user_nav | login-register.php | header/login-register.php | ✅ |
| theme_general_banner_image | banner.php | header/banner.php | ✅ |
| theme_header_email | contact-information.php | header/contact.php | ✅ |
| theme_header_phone | contact-information.php | header/contact.php | ✅ |
| theme_header_phone_icon | contact-information.php | header/contact.php | ✅ |
| theme_login_modal_background | login-register.php | header/login-register.php | ✅ |
| theme_sticky_header | basics.php | header/basic.php | ✅ |
| Footer (14 keys) | |||
| inspiry_copyright_text_display | text.php | footer/copyrights.php | ✅ |
| inspiry_enable_footer_logo | logo.php | footer/logo.php | ✅ |
| inspiry_enable_footer_tagline | logo.php | footer/logo.php | ✅ |
| inspiry_footer_logo | logo.php | footer/logo.php | ✅ |
| inspiry_footer_tagline | logo.php | footer/logo.php | ✅ |
| realhomes_custom_footer_is_selected | footer.php | footer/basic.php | ✅ |
| realhomes_footer_layout | footer.php | footer/basic.php | ✅ |
| realhomes_footer_retina_logo | logo.php | footer/logo.php | ✅ |
| realhomes_site_footer_bg | footer.php | footer/basic.php | ✅ |
| realhomes_site_footer_bg_opacity | footer.php | footer/basic.php | ✅ |
| realhomes_site_footer_bg_opacity_mobile | footer.php | footer/basic.php | ✅ |
| realhomes_sticky_footer | footer.php | footer/basic.php | ✅ |
| theme_copyright_text | text.php | footer/copyrights.php | ✅ |
| theme_designed_by_text | text.php | footer/copyrights.php | ✅ |
| Property (206 keys) | |||
| inspiry_agent_form_success_redirect_page | agent.php | property/single/agent.php | ✅ |
| inspiry_ajax_location_field | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| inspiry_beds_baths_search_behaviour | search-form-bed.php | property/search/bed-and-bath.php | ✅ |
| inspiry_child_properties_layout | child-properties.php | property/single/child-properties.php | ✅ |
| inspiry_display_energy_performance | energy-performance.php | property/single/energy-performance.php | ✅ |
| inspiry_display_virtual_tour | virtual-tour.php | property/single/virtual-tour.php | ✅ |
| inspiry_display_walkscore | walkscore.php | property/single/walkscore.php | ✅ |
| inspiry_display_yelp_nearby_places | yelp-nearby-places.php | property/single/yelp.php | ✅ |
| inspiry_energy_performance_title | energy-performance.php | property/single/energy-performance.php | ✅ |
| inspiry_garages_search_behaviour | search-form-garages.php | property/search/garages.php | ✅ |
| inspiry_hide_empty_locations | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| inspiry_hide_property_address | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| inspiry_listing_header_variation | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| inspiry_listing_skip_sticky | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| inspiry_location_count_placeholder_1 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| inspiry_location_placeholder_1 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| inspiry_location_placeholder_2 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| inspiry_location_placeholder_3 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| inspiry_location_placeholder_4 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| inspiry_max_area_label | search-form-areas.php | property/search/area.php | ✅ |
| inspiry_max_area_placeholder_text | search-form-areas.php | property/search/area.php | ✅ |
| inspiry_max_price_label | search-form-prices.php | property/search/prices.php | ✅ |
| inspiry_max_price_placeholder | search-form-prices.php | property/search/prices.php | ✅ |
| inspiry_min_area_label | search-form-areas.php | property/search/area.php | ✅ |
| inspiry_min_area_placeholder_text | search-form-areas.php | property/search/area.php | ✅ |
| inspiry_min_baths | search-form-bed.php | property/search/bed-and-bath.php | ✅ |
| inspiry_min_baths_label | search-form-bed.php | property/search/bed-and-bath.php | ✅ |
| inspiry_min_baths_placeholder | search-form-bed.php | property/search/bed-and-bath.php | ✅ |
| inspiry_min_beds | search-form-bed.php | property/search/bed-and-bath.php | ✅ |
| inspiry_min_beds_label | search-form-bed.php | property/search/bed-and-bath.php | ✅ |
| inspiry_min_beds_placeholder | search-form-bed.php | property/search/bed-and-bath.php | ✅ |
| inspiry_min_garages | search-form-garages.php | property/search/garages.php | ✅ |
| inspiry_min_garages_label | search-form-garages.php | property/search/garages.php | ✅ |
| inspiry_min_garages_placeholder | search-form-garages.php | property/search/garages.php | ✅ |
| inspiry_min_price_label | search-form-prices.php | property/search/prices.php | ✅ |
| inspiry_min_price_placeholder | search-form-prices.php | property/search/prices.php | ✅ |
| inspiry_properties_on_search_map | properties-search-page.php | property/search/search-page.php | ✅ |
| inspiry_property_agent_counter_placeholder | search-form-property-agents.php | property/search/agents.php | ✅ |
| inspiry_property_agent_form | agent.php | property/single/agent.php | ✅ |
| inspiry_property_agent_label | agent.php | property/single/agent.php | ✅ |
| inspiry_property_agent_placeholder | search-form-property-agents.php | property/search/agents.php | ✅ |
| inspiry_property_card_variation | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| inspiry_property_date_format | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| inspiry_property_features_display | basics.php | property/single/basic.php | ✅ |
| inspiry_property_floor_plans_label | floor-plan.php | property/single/floor-plans.php | ✅ |
| inspiry_property_map_marker_color | map.php | property/single/map.php | ✅ |
| inspiry_property_map_type | map.php | property/single/map.php | ✅ |
| inspiry_property_map_zoom | map.php | property/single/map.php | ✅ |
| inspiry_property_sections_order | sections-manager.php | property/single/section-manager.php | ✅ |
| inspiry_property_sections_order_default | sections-manager.php | property/single/section-manager.php | ✅ |
| inspiry_property_single_template | basics.php | property/single/basic.php | ✅ |
| inspiry_property_status_placeholder | search-form-property-status.php | property/search/property-status.php | ✅ |
| inspiry_property_type_placeholder | search-form-property-types.php | property/search/property-type.php | ✅ |
| inspiry_property_types_counter_placeholder | search-form-property-types.php | property/search/property-type.php | ✅ |
| inspiry_property_walkscore_title | walkscore.php | property/single/walkscore.php | ✅ |
| inspiry_property_yelp_nearby_places_title | yelp-nearby-places.php | property/single/yelp.php | ✅ |
| inspiry_search_exclude_status | properties-search-page.php | property/search/search-page.php | ✅ |
| inspiry_search_fields_feature_search | search-form-property-features.php | property/search/property-features.php | ✅ |
| inspiry_search_fields_main_row | search-form-basics.php | property/search/basic.php | ✅ |
| inspiry_search_map_type | properties-search-page.php | property/search/search-page.php | ✅ |
| inspiry_search_results_layout | properties-search-page.php | property/search/search-page.php | ✅ |
| inspiry_search_results_page_layout | properties-search-page.php | property/search/search-page.php | ✅ |
| inspiry_section_label_properties_archives | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| inspiry_section_label_properties_cards | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| inspiry_sfoi_fields_main_row | search-form-basics.php | property/search/basic.php | ✅ |
| inspiry_sidebar_asf_collapse | search-form-basics.php | property/search/basic.php | ✅ |
| inspiry_similar_properties | similar-properties.php | property/single/similar-properties.php | ✅ |
| inspiry_similar_properties_filters | similar-properties.php | property/single/similar-properties.php | ✅ |
| inspiry_similar_properties_frontend_filters | similar-properties.php | property/single/similar-properties.php | ✅ |
| inspiry_similar_properties_sorty_by | similar-properties.php | property/single/similar-properties.php | ✅ |
| inspiry_single_property_banner_title | banner.php | property/single/banner.php | ✅ |
| inspiry_term_description | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| inspiry_virtual_tour_title | virtual-tour.php | property/single/virtual-tour.php | ✅ |
| inspiry_walkscore_api_key | walkscore.php | property/single/walkscore.php | ✅ |
| inspiry_yelp_api_key | yelp-nearby-places.php | property/single/yelp.php | ✅ |
| inspiry_yelp_distance_unit | yelp-nearby-places.php | property/single/yelp.php | ✅ |
| inspiry_yelp_search_limit | yelp-nearby-places.php | property/single/yelp.php | ✅ |
| inspiry_yelp_terms | yelp-nearby-places.php | property/single/yelp.php | ✅ |
| realhomes_agent_callnow_button_label | agent.php | property/single/agent.php | ✅ |
| realhomes_agent_contact_links | agent.php | property/single/agent.php | ✅ |
| realhomes_agent_form_default_message | agent.php | property/single/agent.php | ✅ |
| realhomes_agent_section_title | agent.php | property/single/agent.php | ✅ |
| realhomes_agent_whatsapp_button_label | agent.php | property/single/agent.php | ✅ |
| realhomes_allow_svg_upload | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_compare_button_icon | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_custom_action_buttons | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_custom_header_position_property | basics.php | property/single/basic.php | ✅ |
| realhomes_custom_meta_icons | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_custom_property_meta_icons | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_custom_responsive_header_property_single | basics.php | property/single/basic.php | ✅ |
| realhomes_custom_search_form | search-form-basics.php | property/search/basic.php | ✅ |
| realhomes_custom_search_form_margin_bottom | search-form-basics.php | property/search/basic.php | ✅ |
| realhomes_custom_search_form_margin_top | search-form-basics.php | property/search/basic.php | ✅ |
| realhomes_custom_search_form_max_width | search-form-basics.php | property/search/basic.php | ✅ |
| realhomes_display_schedule_a_tour | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_display_schedule_a_tour_for | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_elementor_property_archive_template | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_elementor_property_single_template | basics.php | property/single/basic.php | ✅ |
| realhomes_enable_report_property | report-property.php | property/single/report-property.php | ✅ |
| realhomes_favourite_button_icon | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_geolocation_label | search-form-basics.php | property/search/basic.php | ✅ |
| realhomes_geolocation_placeholder_text | search-form-basics.php | property/search/basic.php | ✅ |
| realhomes_global_ajax_pagination | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_google_map_link_display | map.php | property/single/map.php | ✅ |
| realhomes_google_map_link_text | map.php | property/single/map.php | ✅ |
| realhomes_grid_fullwidth_template_column | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_grid_template_column | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_hide_empty_property_types | search-form-property-types.php | property/search/property-type.php | ✅ |
| realhomes_hide_filter_with_zero_properties | similar-properties.php | property/single/similar-properties.php | ✅ |
| realhomes_image_button_icon | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_listing_views_counter | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_location_field_type | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| realhomes_lot_size_unit | search-form-lot-size.php | property/search/lot-size.php | ✅ |
| realhomes_max_lot_size_label | search-form-lot-size.php | property/search/lot-size.php | ✅ |
| realhomes_max_lot_size_placeholder_text | search-form-lot-size.php | property/search/lot-size.php | ✅ |
| realhomes_min_lot_size_label | search-form-lot-size.php | property/search/lot-size.php | ✅ |
| realhomes_min_lot_size_placeholder_text | search-form-lot-size.php | property/search/lot-size.php | ✅ |
| realhomes_no_result_found_text | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_pagination_navigation_type | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_print_button_icon | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_printable_additional_meta_fields | print.php | property/single/print.php | ✅ |
| realhomes_property_agency_counter_placeholder | search-form-property-agency.php | property/search/agencies.php | ✅ |
| realhomes_property_agency_placeholder | search-form-property-agency.php | property/search/agencies.php | ✅ |
| realhomes_property_card_variation | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_property_media_in_print | print.php | property/single/print.php | ✅ |
| realhomes_property_price_separator | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_report_button_icon | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_rpm_form_child_options_title | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_custom_child_item | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_custom_child_item_title | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_email | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_email_response_text | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_email_response_title | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_main_options | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_parent_item | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_parent_item_child_options | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_parent_item_title | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_submit_button_label | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_textarea_placeholder | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_form_user_email | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_sub_title | report-property.php | property/single/report-property.php | ✅ |
| realhomes_rpm_title | report-property.php | property/single/report-property.php | ✅ |
| realhomes_sat_button_text | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_sat_date_placeholder | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_sat_email_placeholder | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_sat_message_placeholder | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_sat_name_placeholder | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_sat_phone_placeholder | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_sat_type_in_person_label | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_sat_type_video_chat_label | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_schedule_a_tour_title | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_schedule_side_description | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_schedule_time_slots | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_schedule_tour_GDPR_status | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_search_radius_range_initial | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| realhomes_search_radius_range_max | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| realhomes_search_radius_range_min | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| realhomes_search_radius_range_type | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| realhomes_search_results_page_map | properties-search-page.php | property/search/search-page.php | ✅ |
| realhomes_send_schedule_copy_to_admin | schedule-a-tour.php | property/single/schedule-a-tour.php | ✅ |
| realhomes_share_button_icon | property-meta-icons.php | property/custom-icons.php | ✅ |
| realhomes_similar_properties_tax_relation | similar-properties.php | property/single/similar-properties.php | ✅ |
| realhomes_single_property_content_layout | basics.php | property/single/basic.php | ✅ |
| realhomes_single_property_print_setting | print.php | property/single/print.php | ✅ |
| realhomes_single_property_printable_sections | print.php | property/single/print.php | ✅ |
| realhomes_single_property_section_style | basics.php | property/single/basic.php | ✅ |
| realhomes_single_property_variation | basics.php | property/single/basic.php | ✅ |
| realhomes_taxonomy_name_before_title | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| realhomes_video_button_icon | property-meta-icons.php | property/custom-icons.php | ✅ |
| theme_agent_detail_page_link_text | agent.php | property/single/agent.php | ✅ |
| theme_area_unit | search-form-areas.php | property/search/area.php | ✅ |
| theme_breadcrumbs_taxonomy | breadcrumbs.php | property/single/breadcrumbs.php | ✅ |
| theme_common_note | common-note.php | property/single/common-note.php | ✅ |
| theme_common_note_title | common-note.php | property/single/common-note.php | ✅ |
| theme_display_agent_contact_info | agent.php | property/single/agent.php | ✅ |
| theme_display_agent_description | agent.php | property/single/agent.php | ✅ |
| theme_display_agent_detail_page_link | agent.php | property/single/agent.php | ✅ |
| theme_display_agent_info | agent.php | property/single/agent.php | ✅ |
| theme_display_attachments | attachments.php | property/single/attachments.php | ✅ |
| theme_display_common_note | common-note.php | property/single/common-note.php | ✅ |
| theme_display_google_map | map.php | property/single/map.php | ✅ |
| theme_display_property_breadcrumbs | breadcrumbs.php | property/single/breadcrumbs.php | ✅ |
| theme_display_similar_properties | similar-properties.php | property/single/similar-properties.php | ✅ |
| theme_display_video | video.php | property/single/video.php | ✅ |
| theme_listing_default_sort | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| theme_listing_excerpt_length | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| theme_listing_layout | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| theme_listing_module | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| theme_location_select_number | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| theme_location_title_1 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| theme_location_title_2 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| theme_location_title_3 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| theme_location_title_4 | search-form-locations.php | property/search/search-form-locations.php | ✅ |
| theme_maximum_price_values | search-form-prices.php | property/search/prices.php | ✅ |
| theme_maximum_price_values_for_rent | search-form-prices.php | property/search/prices.php | ✅ |
| theme_message_copy_email | agent.php | property/single/agent.php | ✅ |
| theme_minimum_price_values | search-form-prices.php | property/search/prices.php | ✅ |
| theme_minimum_price_values_for_rent | search-form-prices.php | property/search/prices.php | ✅ |
| theme_number_of_properties | properties-templates-and-archive.php | property/templates-arthives.php | ✅ |
| theme_number_of_similar_properties | similar-properties.php | property/single/similar-properties.php | ✅ |
| theme_property_attachments_title | attachments.php | property/single/attachments.php | ✅ |
| theme_property_map_title | map.php | property/single/map.php | ✅ |
| theme_property_video_title | video.php | property/single/video.php | ✅ |
| theme_send_message_copy | agent.php | property/single/agent.php | ✅ |
| theme_similar_properties_title | similar-properties.php | property/single/similar-properties.php | ✅ |
| theme_status_for_rent | search-form-prices.php | property/search/prices.php | ✅ |
| Dashboard (67 keys) | |||
| inspiry_allowed_max_attachments | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_checkout_badges_display | dashboard.php | dashboard/memberships.php | ✅ |
| inspiry_current_package_btn_text | dashboard.php | dashboard/memberships.php | ✅ |
| inspiry_dashboard_page | dashboard.php | dashboard/basic.php | ✅ |
| inspiry_dashboard_page_display | dashboard.php | dashboard/basic.php | ✅ |
| inspiry_dashboard_posts_per_page | dashboard.php | dashboard/basic.php | ✅ |
| inspiry_dashboard_submit_page_layout | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_disable_submit_property | dashboard.php | dashboard/memberships.php | ✅ |
| inspiry_favorites_module_display | dashboard.php | dashboard/favorites.php | ✅ |
| inspiry_guest_submission | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_login_on_fav | dashboard.php | dashboard/favorites.php | ✅ |
| inspiry_order_dialog_heading | dashboard.php | dashboard/memberships.php | ✅ |
| inspiry_package_btn_text | dashboard.php | dashboard/memberships.php | ✅ |
| inspiry_profile_module_display | dashboard.php | dashboard/profile.php | ✅ |
| inspiry_properties_module_display | dashboard.php | dashboard/my-properties.php | ✅ |
| inspiry_property_additional_details | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_property_submit_redirect_page | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_show_submit_on_login | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_submit_max_number_images | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_submit_property_fields | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_submit_property_module_display | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_submit_property_terms_page | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_submit_property_terms_text | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_text_before_price | dashboard.php | dashboard/memberships.php | ✅ |
| inspiry_updated_property_status | dashboard.php | dashboard/property-submit.php | ✅ |
| inspiry_user_greeting_text | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_add_agency_module_display | dashboard.php | dashboard/agencies.php | ✅ |
| realhomes_add_agent_module_display | dashboard.php | dashboard/agents.php | ✅ |
| realhomes_after_agency_submit_redirect_page | dashboard.php | dashboard/agencies.php | ✅ |
| realhomes_after_agent_submit_redirect_page | dashboard.php | dashboard/agents.php | ✅ |
| realhomes_agencies_module_display | dashboard.php | dashboard/agencies.php | ✅ |
| realhomes_agency_submit_notice_email | dashboard.php | dashboard/agencies.php | ✅ |
| realhomes_agent_assignment_option | dashboard.php | dashboard/property-submit.php | ✅ |
| realhomes_agent_submit_notice_email | dashboard.php | dashboard/agents.php | ✅ |
| realhomes_agents_module_display | dashboard.php | dashboard/agents.php | ✅ |
| realhomes_auto_user_agent_assignment | dashboard.php | dashboard/property-submit.php | ✅ |
| realhomes_bookings_module_display | dashboard.php | dashboard/booking-reservations.php | ✅ |
| realhomes_dashboard_action_buttons_style | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_dashboard_action_buttons_text_hide | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_dashboard_action_buttons_text_hover | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_dashboard_allow_favorites_list_share | dashboard.php | dashboard/favorites.php | ✅ |
| realhomes_dashboard_analytics_module | dashboard.php | dashboard/analytics.php | ✅ |
| realhomes_dashboard_color_scheme | dashboard.php | dashboard/styles.php | ✅ |
| realhomes_dashboard_frontpage_button | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_dashboard_frontpage_button_label | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_dashboard_frontpage_button_type | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_dashboard_header_search | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_dashboard_logo_link | dashboard.php | dashboard/basic.php | ✅ |
| realhomes_default_selected_agent | dashboard.php | dashboard/property-submit.php | ✅ |
| realhomes_default_selected_agent_backend | dashboard.php | dashboard/property-submit.php | ✅ |
| realhomes_enable_edit_property_notices | dashboard.php | dashboard/property-submit.php | ✅ |
| realhomes_invoices_module_display | dashboard.php | dashboard/booking-reservations.php | ✅ |
| realhomes_order_dialog_description | dashboard.php | dashboard/memberships.php | ✅ |
| realhomes_property_activate_controls | dashboard.php | dashboard/my-properties.php | ✅ |
| realhomes_reservations_module_display | dashboard.php | dashboard/booking-reservations.php | ✅ |
| realhomes_submit_form_required_fields | dashboard.php | dashboard/property-submit.php | ✅ |
| realhomes_submitted_agency_status | dashboard.php | dashboard/agencies.php | ✅ |
| realhomes_submitted_agent_status | dashboard.php | dashboard/agents.php | ✅ |
| realhomes_taxonomy_selection_method | dashboard.php | dashboard/property-submit.php | ✅ |
| realhomes_updated_agency_status | dashboard.php | dashboard/agencies.php | ✅ |
| realhomes_updated_agent_status | dashboard.php | dashboard/agents.php | ✅ |
| theme_enable_fav_button | dashboard.php | dashboard/favorites.php | ✅ |
| theme_restricted_level | dashboard.php | dashboard/basic.php | ✅ |
| theme_submit_button_text | dashboard.php | dashboard/property-submit.php | ✅ |
| theme_submit_message | dashboard.php | dashboard/property-submit.php | ✅ |
| theme_submit_notice_email | dashboard.php | dashboard/property-submit.php | ✅ |
| theme_submitted_status | dashboard.php | dashboard/property-submit.php | ✅ |
| Styles (363 keys) | |||
| inspiry_advance_search_arrow_and_text | search-form.php | styles/search-form.php | ✅ |
| inspiry_advance_search_btn_bg | search-form.php | styles/search-form.php | ✅ |
| inspiry_advance_search_btn_hover_bg | search-form.php | styles/search-form.php | ✅ |
| inspiry_advance_search_btn_text | search-form.php | styles/search-form.php | ✅ |
| inspiry_advance_search_btn_text_hover | search-form.php | styles/search-form.php | ✅ |
| inspiry_agents_background_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_agents_home_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_agents_listed_props_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_agents_phone_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_agents_text_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_agents_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_agents_title_hover_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_back_to_top_bg_color | buttons.php | styles/buttons.php | ✅ |
| inspiry_back_to_top_bg_hover_color | buttons.php | styles/buttons.php | ✅ |
| inspiry_back_to_top_color | buttons.php | styles/buttons.php | ✅ |
| inspiry_basic_core_note_two | core-colors.php | styles/core-colors.php | ✅ |
| inspiry_body_font | typography.php | styles/typography.php | ✅ |
| inspiry_body_font_color | core-colors.php | styles/core-colors.php | ✅ |
| inspiry_body_font_weight | typography.php | styles/typography.php | ✅ |
| inspiry_buttons_transition_style | buttons.php | styles/buttons.php | ✅ |
| inspiry_cta_btn_one_bg | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_btn_one_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_btn_two_bg | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_btn_two_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_contact_btn_one_bg | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_contact_btn_one_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_contact_btn_two_bg | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_contact_btn_two_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_contact_desc_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_contact_home_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_contact_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_desc_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_cta_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_currency_switcher_label | floating-features.php | styles/floating-features.php | ✅ |
| inspiry_default_styles | core-colors.php | styles/core-colors.php | ✅ |
| inspiry_featured_properties_background_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_featured_properties_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_featured_testimonials_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_features_background_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_features_home_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_features_section_home_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_features_text_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_footer_background_color | footer.php | styles/footer.php | ✅ |
| inspiry_footer_bg | ultra-footer.php | styles/footer.php | ✅ |
| inspiry_gallery_button_bg_color | gallery.php | styles/gallery.php | ✅ |
| inspiry_gallery_button_bg_hover_color | gallery.php | styles/gallery.php | ✅ |
| inspiry_gallery_button_color | gallery.php | styles/gallery.php | ✅ |
| inspiry_gallery_button_hover_color | gallery.php | styles/gallery.php | ✅ |
| inspiry_gallery_hover_color | gallery.php | styles/gallery.php | ✅ |
| inspiry_gallery_overlay_button_color_labels | gallery.php | styles/gallery.php | ✅ |
| inspiry_grid_card_2_bottom_agency_hover_title | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_2_bottom_agency_title | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_2_bottom_agent_hover_title | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_2_bottom_agent_title | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_2_heading | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_3_bottom_agency_hover_title | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_3_bottom_agency_title | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_3_bottom_agent_bg | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_3_bottom_agent_hover_title | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_3_bottom_agent_title | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_3_heading | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_common_heading | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_featured_tag_bg_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_featured_tag_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_status_tag_bg_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_status_tag_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_trend_tag_bg_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_grid_card_trend_tag_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_heading_font | typography.php | styles/typography.php | ✅ |
| inspiry_heading_font_color | core-colors.php | styles/core-colors.php | ✅ |
| inspiry_heading_font_weight | typography.php | styles/typography.php | ✅ |
| inspiry_home_agents_desc_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_agents_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_agents_title_span_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_cta_bg_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_cta_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_feature_text_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_feature_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_features_background_colors | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_features_desc_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_features_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_features_title_span_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_news_background_colors | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_news_desc_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_news_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_news_title_span_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_partners_background_colors | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_partners_desc_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_partners_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_partners_title_span_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_properties_background_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_properties_desc_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_properties_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_properties_title_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_properties_title_span_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_home_responsive_header_labels | ultra-header-styles.php | styles/header.php | ✅ |
| inspiry_language_switcher_label | floating-features.php | styles/floating-features.php | ✅ |
| inspiry_main_menu_hover_bg | ultra-header-styles.php | styles/header.php | ✅ |
| inspiry_news_home_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_partners_home_sep_labels | home-page.php | styles/home-page.php | ✅ |
| inspiry_post_border_color | news.php | styles/news.php | ✅ |
| inspiry_post_meta_bg | news.php | styles/news.php | ✅ |
| inspiry_post_meta_color | news.php | styles/news.php | ✅ |
| inspiry_post_meta_hover_color | news.php | styles/news.php | ✅ |
| inspiry_post_text_color | news.php | styles/news.php | ✅ |
| inspiry_post_title_color | news.php | styles/news.php | ✅ |
| inspiry_post_title_hover_color | news.php | styles/news.php | ✅ |
| inspiry_property_compare_icon_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_compare_icon_hover_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_favorite_icon_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_favorite_icon_hover_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_featured_label_bg | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_featured_label_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_grid_card_address_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_grid_card_address_hover_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_image_overlay | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_meta_heading_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_meta_icon_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_tooltip_bgcolor | property-item.php | styles/property-card.php | ✅ |
| inspiry_property_tooltip_color | property-item.php | styles/property-card.php | ✅ |
| inspiry_scroll_to_top_separator | buttons.php | styles/buttons.php | ✅ |
| inspiry_search_form_active_text | search-form.php | styles/search-form.php | ✅ |
| inspiry_search_form_primary_color | search-form.php | styles/search-form.php | ✅ |
| inspiry_search_form_secondary_color | search-form.php | styles/search-form.php | ✅ |
| inspiry_secondary_font | typography.php | styles/typography.php | ✅ |
| inspiry_secondary_font_weight | typography.php | styles/typography.php | ✅ |
| inspiry_slider_featured_label_bg | slider.php | styles/slider.php | ✅ |
| inspiry_slider_meta_heading_color | slider.php | styles/slider.php | ✅ |
| inspiry_slider_meta_icon_color | slider.php | styles/slider.php | ✅ |
| inspiry_slider_meta_text_color | slider.php | styles/slider.php | ✅ |
| inspiry_submit_button_border_color | buttons.php | styles/buttons.php | ✅ |
| inspiry_submit_button_border_hover_color | buttons.php | styles/buttons.php | ✅ |
| inspiry_testimonial_bg | home-page.php | styles/home-page.php | ✅ |
| inspiry_testimonial_bg_quote | home-page.php | styles/home-page.php | ✅ |
| inspiry_testimonial_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_testimonial_name_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_testimonial_url_color | home-page.php | styles/home-page.php | ✅ |
| inspiry_top_menu_gradient_color | header-styles.php | styles/header.php | ✅ |
| realhomes_color_primary_light | core-colors.php | styles/core-colors.php | ✅ |
| realhomes_color_scheme | core-colors.php | styles/core-colors.php | ✅ |
| realhomes_color_secondary_light | core-colors.php | styles/core-colors.php | ✅ |
| realhomes_compare_icon_placeholder_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_favorite_icon_placeholder_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_form_button_bg_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_button_border_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_button_hover_bg_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_button_hover_border_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_button_hover_text_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_button_text_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_field_background_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_field_icon_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_field_icon_second_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_field_text_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_gdpr_text_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_label_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_textarea_background_color | forms.php | styles/forms.php | ✅ |
| realhomes_form_textarea_text_color | forms.php | styles/forms.php | ✅ |
| realhomes_global_headings_hover_color | core-colors.php | styles/core-colors.php | ✅ |
| realhomes_global_link_color | core-colors.php | styles/core-colors.php | ✅ |
| realhomes_global_link_hover_color | core-colors.php | styles/core-colors.php | ✅ |
| realhomes_grid_card_4_heading | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_4_price_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_4_status_tag_bg_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_4_status_tag_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_5_heading | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_5_meta_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_5_price_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_5_status_tag_bg_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_5_status_tag_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_grid_card_5_title_color | property-item.php | styles/property-card.php | ✅ |
| realhomes_rating_percentage_active_color | misc.php | styles/miscellaneous.php | ✅ |
| realhomes_rating_percentage_inactive_color | misc.php | styles/miscellaneous.php | ✅ |
| realhomes_rating_stars_color | misc.php | styles/miscellaneous.php | ✅ |
| realhomes_responsive_header_bottom_bg_color | header-styles.php | styles/header.php | ✅ |
| realhomes_round_corners | round-corners.php | styles/round-corners.php | ✅ |
| realhomes_selection_bg_color | core-colors.php | styles/core-colors.php | ✅ |
| realhomes_sticky_header_color_scheme | header-styles.php | styles/sticky-header.php | ✅ |
| realhomes_unrated_stars_color | misc.php | styles/miscellaneous.php | ✅ |
| realhomes_wp_login_page_background_attachment | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_image | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_image_position_x | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_image_position_y | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_image_repeat | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_image_size | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_opacity | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_overlay_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_background_section | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_bg_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_border_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_border_radius | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_border_width | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_hover_bg_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_hover_border_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_hover_text_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_padding | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_button_text_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_form_bg_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_form_border_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_form_border_radius | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_form_border_width | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_form_button_section | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_form_fields_section | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_form_label_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_form_section | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_input_bg_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_input_border_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_input_border_radius | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_input_border_width | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_input_font_size | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_input_text_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_link_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_link_hover_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_logo | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_logo_bottom_space | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_logo_display | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_logo_height | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_logo_section | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_logo_top_space | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_logo_type | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_logo_width | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_site_title_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_styles | wp-login-page.php | styles/wp-login-page.php | ✅ |
| realhomes_wp_login_page_text_color | wp-login-page.php | styles/wp-login-page.php | ✅ |
| theme_banner_bg_color | banner.php | styles/banner.php | ✅ |
| theme_banner_bg_overlay_color | banner.php | styles/banner.php | ✅ |
| theme_banner_bg_overlay_opacity | banner.php | styles/banner.php | ✅ |
| theme_banner_sub_text_color | banner.php | styles/banner.php | ✅ |
| theme_banner_sub_title_bg_color | banner.php | styles/banner.php | ✅ |
| theme_banner_text_color | banner.php | styles/banner.php | ✅ |
| theme_banner_title_bg_color | banner.php | styles/banner.php | ✅ |
| theme_button_bg_color | buttons.php | styles/buttons.php | ✅ |
| theme_button_hover_bg_color | buttons.php | styles/buttons.php | ✅ |
| theme_button_hover_text_color | buttons.php | styles/buttons.php | ✅ |
| theme_compare_switcher_background | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_switcher_background_open | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_switcher_selected_text | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_switcher_text_open | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_view_background | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_view_property_button_background | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_view_property_button_hover | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_view_property_button_text | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_view_property_button_text_hover | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_view_property_title_color | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_view_property_title_hover_color | floating-features.php | styles/floating-features.php | ✅ |
| theme_compare_view_title_color | floating-features.php | styles/floating-features.php | ✅ |
| theme_core_color_blue_dark | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_color_blue_light | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_color_orange_burnt | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_color_orange_dark | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_color_orange_glow | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_color_orange_light | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_mod_color_green | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_mod_color_green_dark | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_mod_color_orange | core-colors.php | styles/core-colors.php | ✅ |
| theme_core_mod_color_orange_dark | core-colors.php | styles/core-colors.php | ✅ |
| theme_currency_switcher_background | floating-features.php | styles/floating-features.php | ✅ |
| theme_currency_switcher_background_dropdown | floating-features.php | styles/floating-features.php | ✅ |
| theme_currency_switcher_background_hover_dropdown | floating-features.php | styles/floating-features.php | ✅ |
| theme_currency_switcher_background_open | floating-features.php | styles/floating-features.php | ✅ |
| theme_currency_switcher_selected_text | floating-features.php | styles/floating-features.php | ✅ |
| theme_currency_switcher_text_dropdown | floating-features.php | styles/floating-features.php | ✅ |
| theme_currency_switcher_text_hover_dropdown | floating-features.php | styles/floating-features.php | ✅ |
| theme_currency_switcher_text_open | floating-features.php | styles/floating-features.php | ✅ |
| theme_disable_footer_bg | footer.php | styles/footer.php | ✅ |
| theme_featured_prop_text_color | home-page.php | styles/home-page.php | ✅ |
| theme_featured_prop_title_color | home-page.php | styles/home-page.php | ✅ |
| theme_featured_prop_title_span_color | home-page.php | styles/home-page.php | ✅ |
| theme_floating_responsive_background | floating-features.php | styles/floating-features.php | ✅ |
| theme_footer_bg_img | footer.php | styles/footer.php | ✅ |
| theme_footer_border_color | footer.php | styles/footer.php | ✅ |
| theme_footer_widget_link_color | ultra-footer.php | styles/footer.php | ✅ |
| theme_footer_widget_link_hover_color | ultra-footer.php | styles/footer.php | ✅ |
| theme_footer_widget_text_color | ultra-footer.php | styles/footer.php | ✅ |
| theme_footer_widget_title_color | footer.php | styles/footer.php | ✅ |
| theme_footer_widget_title_hover_color | ultra-footer.php | styles/footer.php | ✅ |
| theme_header_bg_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_header_bg_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_border_color | header-styles.php | styles/header.php | ✅ |
| theme_header_email_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_email_hover_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_link_hover_color | header-styles.php | styles/header.php | ✅ |
| theme_header_menu_top_color | header-styles.php | styles/header.php | ✅ |
| theme_header_meta_bg_color | header-styles.php | styles/header.php | ✅ |
| theme_header_phone_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_phone_hover_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_site_logo_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_site_logo_hover_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_social_icon_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_header_social_icon_color_hover | ultra-header-styles.php | styles/header.php | ✅ |
| theme_header_tag_line_bg_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_tag_line_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_text_color | header-styles.php | styles/header.php | ✅ |
| theme_header_user_nav_border_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_user_nav_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_header_user_nav_hover_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_language_switcher_background | floating-features.php | styles/floating-features.php | ✅ |
| theme_language_switcher_background_dropdown | floating-features.php | styles/floating-features.php | ✅ |
| theme_language_switcher_background_hover_dropdown | floating-features.php | styles/floating-features.php | ✅ |
| theme_language_switcher_background_open | floating-features.php | styles/floating-features.php | ✅ |
| theme_language_switcher_selected_text | floating-features.php | styles/floating-features.php | ✅ |
| theme_language_switcher_text_dropdown | floating-features.php | styles/floating-features.php | ✅ |
| theme_language_switcher_text_hover_dropdown | floating-features.php | styles/floating-features.php | ✅ |
| theme_language_switcher_text_open | floating-features.php | styles/floating-features.php | ✅ |
| theme_logo_responsive_text_color | header-styles.php | styles/header.php | ✅ |
| theme_logo_text_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_logo_text_hover_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_main_menu_text_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_main_menu_text_hover_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_menu_bg_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_menu_hover_bg_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_menu_hover_text_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_menu_text_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_modern_sticky_header_bg_color | ultra-header-styles.php | styles/sticky-header.php | ✅ |
| theme_modern_sticky_header_btn_color | header-styles.php | styles/sticky-header.php | ✅ |
| theme_modern_sticky_header_btn_hover_color | header-styles.php | styles/sticky-header.php | ✅ |
| theme_modern_sticky_header_btn_hover_text_color | header-styles.php | styles/sticky-header.php | ✅ |
| theme_modern_sticky_header_btn_text_color | header-styles.php | styles/sticky-header.php | ✅ |
| theme_modern_sticky_header_menu_color | header-styles.php | styles/sticky-header.php | ✅ |
| theme_modern_sticky_header_menu_text_hover_color | header-styles.php | styles/sticky-header.php | ✅ |
| theme_modern_sticky_header_site_title_color | header-styles.php | styles/sticky-header.php | ✅ |
| theme_modern_sticky_header_site_title_hover_color | header-styles.php | styles/sticky-header.php | ✅ |
| theme_more_details_text_color | property-item.php | styles/property-card.php | ✅ |
| theme_more_details_text_hover_color | property-item.php | styles/property-card.php | ✅ |
| theme_nav_bg_color_hover_responsive | header-styles.php | styles/header.php | ✅ |
| theme_nav_bg_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_nav_text_color_hover_responsive | header-styles.php | styles/header.php | ✅ |
| theme_nav_text_color_responsive | header-styles.php | styles/header.php | ✅ |
| theme_phone_bg_color | header-styles.php | styles/header.php | ✅ |
| theme_phone_icon_bg_color | header-styles.php | styles/header.php | ✅ |
| theme_phone_text_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_phone_text_color_hover | ultra-header-styles.php | styles/header.php | ✅ |
| theme_property_desc_text_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_item_bg_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_item_border_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_meta_bg_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_meta_text_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_price_bg_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_price_text_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_status_bg_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_status_text_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_title_color | property-item.php | styles/property-card.php | ✅ |
| theme_property_title_hover_color | property-item.php | styles/property-card.php | ✅ |
| theme_responsive_header_bg_color | header-styles.php | styles/header.php | ✅ |
| theme_responsive_menu_bg_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_responsive_menu_icon_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_responsive_menu_text_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_responsive_menu_text_hover_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_responsive_phone_text_color | header-styles.php | styles/header.php | ✅ |
| theme_responsive_phone_text_color_hover | header-styles.php | styles/header.php | ✅ |
| theme_responsive_submit_button_bg | ultra-header-styles.php | styles/header.php | ✅ |
| theme_responsive_submit_button_bg_hover | ultra-header-styles.php | styles/header.php | ✅ |
| theme_responsive_submit_button_color | ultra-header-styles.php | styles/header.php | ✅ |
| theme_responsive_submit_button_color_hover | ultra-header-styles.php | styles/header.php | ✅ |
| theme_slide_desc_text_color | slider.php | styles/slider.php | ✅ |
| theme_slide_know_more_bg_color | slider.php | styles/slider.php | ✅ |
| theme_slide_know_more_hover_bg_color | slider.php | styles/slider.php | ✅ |
| theme_slide_know_more_text_color | slider.php | styles/slider.php | ✅ |
| theme_slide_price_color | slider.php | styles/slider.php | ✅ |
| theme_slide_title_color | slider.php | styles/slider.php | ✅ |
| theme_slide_title_hover_color | slider.php | styles/slider.php | ✅ |
| theme_tagline_bg_color | header-styles.php | styles/header.php | ✅ |
| theme_tagline_text_color | header-styles.php | styles/header.php | ✅ |
| Miscellaneous (20 keys) | |||
| ere_email_color_scheme | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_background_color | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_body_link_color | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_footer_link_color | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_footer_text | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_footer_text_color | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_header_content | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_header_image | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_header_title | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| ere_email_template_header_title_color | form-handlers.php | miscellaneous/email-templates.php | ✅ |
| inspiry_compare_action_notification | compare-properties.php | miscellaneous/floating-features.php | ✅ |
| inspiry_compare_button_text | compare-properties.php | miscellaneous/floating-features.php | ✅ |
| inspiry_compare_view_title | compare-properties.php | miscellaneous/floating-features.php | ✅ |
| inspiry_default_floating_bar_display | floating-features.php | miscellaneous/floating-features.php | ✅ |
| inspiry_default_floating_button | floating-features.php | miscellaneous/floating-features.php | ✅ |
| inspiry_floating_position | floating-features.php | miscellaneous/floating-features.php | ✅ |
| realhomes_comparable_property_fields | compare-properties.php | miscellaneous/floating-features.php | ✅ |
| realhomes_compare_head_type | compare-properties.php | miscellaneous/floating-features.php | ✅ |
| realhomes_compare_sticky_head_type | compare-properties.php | miscellaneous/floating-features.php | ✅ |
| theme_compare_properties_module | compare-properties.php | miscellaneous/floating-features.php | ✅ |
| Pages (63 keys) | |||
| inspiry_agencies_header_variation | agencies.php | pages/agencies.php | ✅ |
| inspiry_agencies_properties_count | agencies.php | pages/agencies.php | ✅ |
| inspiry_agencies_sort_controls | agencies.php | pages/agencies.php | ✅ |
| inspiry_agent_properties_count | agents.php | pages/agents.php | ✅ |
| inspiry_agent_single_properties | agents.php | pages/agents.php | ✅ |
| inspiry_agents_header_variation | agents.php | pages/agents.php | ✅ |
| inspiry_agents_sorting | agents.php | pages/agents.php | ✅ |
| inspiry_contact_header_variation | contact.php | pages/contact-page.php | ✅ |
| inspiry_explode_listing_title | pages.php | pages/general-pages.php | ✅ |
| inspiry_gallery_header_variation | gallery.php | pages/gallery-pages.php | ✅ |
| inspiry_gallery_properties_sorting | gallery.php | pages/gallery-pages.php | ✅ |
| inspiry_news_header_variation | blog.php | pages/blog.php | ✅ |
| inspiry_news_page_banner_title_display | blog.php | pages/blog.php | ✅ |
| inspiry_number_of_agents_agency | agencies.php | pages/agencies.php | ✅ |
| inspiry_number_posts_agency | agencies.php | pages/agencies.php | ✅ |
| inspiry_pages_header_variation | pages.php | pages/general-pages.php | ✅ |
| inspiry_post_prev_next_link | blog.php | pages/blog.php | ✅ |
| realhomes_agency_keyword_placeholder | agencies.php | pages/agencies.php | ✅ |
| realhomes_agency_locations_placeholder | agencies.php | pages/agencies.php | ✅ |
| realhomes_agency_search | agencies.php | pages/agencies.php | ✅ |
| realhomes_agency_single_stats_charts | agencies.php | pages/agencies.php | ✅ |
| realhomes_agency_stats_break_point | agencies.php | pages/agencies.php | ✅ |
| realhomes_agency_stats_section_title | agencies.php | pages/agencies.php | ✅ |
| realhomes_agent_keyword_placeholder | agents.php | pages/agents.php | ✅ |
| realhomes_agent_locations_placeholder | agents.php | pages/agents.php | ✅ |
| realhomes_agent_number_of_properties_placeholder | agents.php | pages/agents.php | ✅ |
| realhomes_agent_search | agents.php | pages/agents.php | ✅ |
| realhomes_agent_single_stats_charts | agents.php | pages/agents.php | ✅ |
| realhomes_agent_stats_break_point | agents.php | pages/agents.php | ✅ |
| realhomes_agent_stats_section_title | agents.php | pages/agents.php | ✅ |
| realhomes_agent_verified_placeholder | agents.php | pages/agents.php | ✅ |
| realhomes_agent_view_listing_link | agents.php | pages/agents.php | ✅ |
| realhomes_blog_page_card_layout | blog.php | pages/blog.php | ✅ |
| realhomes_blog_page_columns | blog.php | pages/blog.php | ✅ |
| realhomes_blog_page_description | blog.php | pages/blog.php | ✅ |
| realhomes_blog_page_grid_card_design | blog.php | pages/blog.php | ✅ |
| realhomes_blog_page_layout | blog.php | pages/blog.php | ✅ |
| realhomes_blog_page_sidebar | blog.php | pages/blog.php | ✅ |
| realhomes_contact_map_water_color | contact.php | pages/contact-page.php | ✅ |
| realhomes_display_blog_meta | blog.php | pages/blog.php | ✅ |
| realhomes_display_similar_posts | blog.php | pages/blog.php | ✅ |
| realhomes_elementor_agency_archive_template | agencies.php | pages/agencies.php | ✅ |
| realhomes_elementor_agency_single_template | agencies.php | pages/agencies.php | ✅ |
| realhomes_elementor_agent_archive_template | agents.php | pages/agents.php | ✅ |
| realhomes_elementor_agent_single_template | agents.php | pages/agents.php | ✅ |
| realhomes_gallery_properties_filters | gallery.php | pages/gallery-pages.php | ✅ |
| realhomes_number_of_partners | contact.php | pages/contact-page.php | ✅ |
| realhomes_number_of_properties_values | agents.php | pages/agents.php | ✅ |
| realhomes_partners_section_desc | contact.php | pages/contact-page.php | ✅ |
| realhomes_partners_section_title | contact.php | pages/contact-page.php | ✅ |
| realhomes_post_excerpt_length | blog.php | pages/blog.php | ✅ |
| realhomes_post_layout_shift | blog.php | pages/blog.php | ✅ |
| realhomes_show_partners | contact.php | pages/contact-page.php | ✅ |
| realhomes_single_agency_page_description | agencies.php | pages/agencies.php | ✅ |
| realhomes_single_agent_page_description | agents.php | pages/agents.php | ✅ |
| theme_custom_agency_contact_form | agencies.php | pages/agencies.php | ✅ |
| theme_custom_agent_contact_form | agents.php | pages/agents.php | ✅ |
| theme_gallery_banner_sub_title | gallery.php | pages/gallery-pages.php | ✅ |
| theme_gallery_banner_title | gallery.php | pages/gallery-pages.php | ✅ |
| theme_news_banner_sub_title | blog.php | pages/blog.php | ✅ |
| theme_news_banner_title | blog.php | pages/blog.php | ✅ |
| theme_number_of_properties_agent | agents.php | pages/agents.php | ✅ |
| theme_number_posts_agent | agents.php | pages/agents.php | ✅ |
| Miscellaneous.Php (12 keys) | |||
| inspiry_properties_placeholder_image | misc.php | miscellaneous.php | ✅ |
| inspiry_property_detail_page_link_text | misc.php | miscellaneous.php | ✅ |
| inspiry_scroll_to_top | misc.php | miscellaneous.php | ✅ |
| inspiry_scroll_to_top_position | misc.php | miscellaneous.php | ✅ |
| inspiry_select2_no_result_string | misc.php | miscellaneous.php | ✅ |
| inspiry_stp_position_from_bottom | misc.php | miscellaneous.php | ✅ |
| inspiry_string_know_more | misc.php | miscellaneous.php | ✅ |
| inspiry_unset_default_image_sizes | misc.php | miscellaneous.php | ✅ |
| realhomes_404_main_image | misc.php | miscellaneous.php | ✅ |
| realhomes_404_main_title | misc.php | miscellaneous.php | ✅ |
| realhomes_404_sub_title | misc.php | miscellaneous.php | ✅ |
| realhomes_featured_label | misc.php | miscellaneous.php | ✅ |
| Property.Php (1 keys) | |||
| realhomes_custom_header_property_single | basics.php | property.php | ✅ |
These Customizer keys represent actual settings but are NOT present in the new Options Panel config files.
| Customizer Key | Customizer Source File | Status |
|---|---|---|
| inpsiry_partners_variation | partners.php | ❌ |
| inspiry_footer_partners_to_show | partners.php | ❌ |
| inspiry_list_tax_map_type | properties-templates-and-archive.php | ❌ |
| inspiry_logo_filter_for_print | site-logo.php | ❌ |
| inspiry_property_sections_order_mod | sections-manager.php | ❌ |
| realhomes_agency_agents_count | agencies.php | ❌ |
| realhomes_agency_agents_placeholder | agencies.php | ❌ |
| realhomes_booking_form_checkin_placeholder | booking-form.php | ❌ |
| realhomes_booking_form_checkout_placeholder | booking-form.php | ❌ |
| realhomes_booking_form_email_placeholder | booking-form.php | ❌ |
| realhomes_booking_form_name_placeholder | booking-form.php | ❌ |
| realhomes_booking_form_phone_placeholder | booking-form.php | ❌ |
| realhomes_dashboard_body_font | dashboard.php | ❌ |
| realhomes_dashboard_body_font_weight | dashboard.php | ❌ |
| realhomes_dashboard_heading_font | dashboard.php | ❌ |
| realhomes_dashboard_heading_font_weight | dashboard.php | ❌ |
| realhomes_dashboard_menu_font | dashboard.php | ❌ |
| realhomes_dashboard_menu_font_weight | dashboard.php | ❌ |
| realhomes_elementor_blog_custom_header | blog.php | ❌ |
| realhomes_elementor_blog_template | blog.php | ❌ |
| realhomes_elementor_login_modal_template | login-register.php | ❌ |
| realhomes_elementor_post_single_template | blog.php | ❌ |
| realhomes_footer_contacts_button_bg_color | ultra-footer.php | ❌ |
| realhomes_footer_contacts_button_bg_hover_color | ultra-footer.php | ❌ |
| realhomes_footer_contacts_button_color | ultra-footer.php | ❌ |
| realhomes_footer_contacts_button_hover_color | ultra-footer.php | ❌ |
| realhomes_footer_contacts_heading_color | ultra-footer.php | ❌ |
| realhomes_footer_contacts_wrapper_bg_color | ultra-footer.php | ❌ |
| realhomes_footer_email | contact-information.php | ❌ |
| realhomes_footer_need_help | contact-information.php | ❌ |
| realhomes_footer_phone | contact-information.php | ❌ |
| realhomes_footer_whatsapp | contact-information.php | ❌ |
| realhomes_frontend_dashboard_logo | site-logo.php | ❌ |
| realhomes_frontend_dashboard_logo_retina | site-logo.php | ❌ |
| realhomes_header_logo_width | site-logo.php | ❌ |
| realhomes_mega_menu | basics.php | ❌ |
| realhomes_property_single_booking_form_title | booking-form.php | ❌ |
| realhomes_property_single_display_booking_form | booking-form.php | ❌ |
| realhomes_responsive_menu_container_bg_color | ultra-header-styles.php | ❌ |
| realhomes_responsive_menu_item_border_color | ultra-header-styles.php | ❌ |
| realhomes_responsive_menu_item_hover_bg_color | ultra-header-styles.php | ❌ |
| realhomes_rvr_outdoor_features | rvr-sections.php | ❌ |
| realhomes_ultra_tooltip_bgcolor | ultra-tooltip.php | ❌ |
| realhomes_ultra_tooltip_border_radius | ultra-tooltip.php | ❌ |
| realhomes_ultra_tooltip_color | ultra-tooltip.php | ❌ |
| realhomes_verified_agencies_placeholder | agencies.php | ❌ |
| theme_button_text_color | buttons.php | ❌ |
| theme_partners_title | partners.php | ❌ |
| theme_show_partners | partners.php | ❌ |
| theme_sitelogo | site-logo.php | ❌ |
| theme_sitelogo_mobile | site-logo.php | ❌ |
| theme_sitelogo_retina | site-logo.php | ❌ |
| theme_sitelogo_retina_mobile | site-logo.php | ❌ |
| theme_switcher_language_display | language-switcher.php | ❌ |
| theme_wpml_lang_switcher | language-switcher.php | ❌ |
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.
| ere_email_color_scheme_label | form-handlers.php | ⏭️ |
| ere_email_color_scheme_style_label | form-handlers.php | ⏭️ |
| inspiry_checkin_separator | search-form-basics.php | ⏭️ |
| inspiry_checkout_separator | search-form-basics.php | ⏭️ |
| inspiry_color_scheme_separator | core-colors.php | ⏭️ |
| inspiry_compare_properties_label | floating-features.php | ⏭️ |
| inspiry_core_note_separator | core-colors.php | ⏭️ |
| inspiry_guests_separator | search-form-basics.php | ⏭️ |
| inspiry_header_email_label | contact-information.php | ⏭️ |
| inspiry_heading_font_separator | typography.php | ⏭️ |
| inspiry_keyword_separator | search-form-basics.php | ⏭️ |
| inspiry_login_form_separator | login-register.php | ⏭️ |
| inspiry_property_field_titles_separator | basics.php | ⏭️ |
| inspiry_property_share_titles_separator | basics.php | ⏭️ |
| inspiry_register_form_separator | login-register.php | ⏭️ |
| inspiry_search_agent_separator | search-form-basics.php | ⏭️ |
| inspiry_search_url_separator | properties-search-page.php | ⏭️ |
| inspiry_secondary_font_separator | typography.php | ⏭️ |
| inspiry_section_label_grid_templates | properties-templates-and-archive.php | ⏭️ |
| inspiry_sidebar_asf_collapse_separator | search-form-basics.php | ⏭️ |
| inspiry_site_logo_separator | site-logo.php | ⏭️ |
| pre_properties_views_option_separator | basics.php | ⏭️ |
| realhomes_404_options_separator | misc.php | ⏭️ |
| realhomes_agency_verification_migrate_options_notice | agencies.php | ⏭️ |
| realhomes_agent_verification_migrate_options_notice | agents.php | ⏭️ |
| realhomes_booking_form_adults_label | booking-form.php | ⏭️ |
| realhomes_booking_form_checkin_label | booking-form.php | ⏭️ |
| realhomes_booking_form_checkout_label | booking-form.php | ⏭️ |
| realhomes_booking_form_children_label | booking-form.php | ⏭️ |
| realhomes_booking_form_email_label | booking-form.php | ⏭️ |
| realhomes_booking_form_hide_details_label | booking-form.php | ⏭️ |
| realhomes_booking_form_infants_label | booking-form.php | ⏭️ |
| realhomes_booking_form_name_label | booking-form.php | ⏭️ |
| realhomes_booking_form_payable_label | booking-form.php | ⏭️ |
| realhomes_booking_form_phone_label | booking-form.php | ⏭️ |
| realhomes_booking_form_show_details_label | booking-form.php | ⏭️ |
| realhomes_booking_form_submit_label | booking-form.php | ⏭️ |
| realhomes_compare_properties_panel_label | compare-properties.php | ⏭️ |
| realhomes_compare_properties_section_label | compare-properties.php | ⏭️ |
| realhomes_currency_switcher_section_label | floating-features.php | ⏭️ |
| realhomes_dashboard_heading_font_separator | dashboard.php | ⏭️ |
| realhomes_dashboard_logo_separator | site-logo.php | ⏭️ |
| realhomes_dashboard_menu_font_separator | dashboard.php | ⏭️ |
| realhomes_default_image_control_options_separator | misc.php | ⏭️ |
| realhomes_footer_contact_area_label | ultra-footer.php | ⏭️ |
| realhomes_language_switcher_label | language-switcher.php | ⏭️ |
| realhomes_login_register_basics_label | login-register.php | ⏭️ |
| realhomes_mobile_logo_separator | site-logo.php | ⏭️ |
| realhomes_popup_panel_section_label | floating-features.php | ⏭️ |
| realhomes_property_analytics_notice | dashboard.php | ⏭️ |
| realhomes_property_single_booking_form_options_notice | booking-form.php | ⏭️ |
| realhomes_scroll_to_top_separator | misc.php | ⏭️ |
| realhomes_select2_options_separator | misc.php | ⏭️ |
| realhomes_selection_bg_color_separator | core-colors.php | ⏭️ |
| realhomes_separator_2 | core-colors.php | ⏭️ |
| realhomes_sticky_header_labels | ultra-header-styles.php | ⏭️ |
| realhomes_submit_property_additional_details_label | dashboard.php | ⏭️ |
| realhomes_submit_property_address_label | dashboard.php | ⏭️ |
| realhomes_submit_property_agent_info_label | dashboard.php | ⏭️ |
| realhomes_submit_property_agent_option_one_label | dashboard.php | ⏭️ |
| realhomes_submit_property_agent_option_three_label | dashboard.php | ⏭️ |
| realhomes_submit_property_agent_option_two_label | dashboard.php | ⏭️ |
| realhomes_submit_property_agent_option_two_sub_label | dashboard.php | ⏭️ |
| realhomes_submit_property_area_label | dashboard.php | ⏭️ |
| realhomes_submit_property_area_postfix_label | dashboard.php | ⏭️ |
| realhomes_submit_property_attachments_label | dashboard.php | ⏭️ |
| realhomes_submit_property_bathroom_label | dashboard.php | ⏭️ |
| realhomes_submit_property_bedroom_label | dashboard.php | ⏭️ |
| realhomes_submit_property_description_label | dashboard.php | ⏭️ |
| realhomes_submit_property_energy_class_label | dashboard.php | ⏭️ |
| realhomes_submit_property_energy_performance_label | dashboard.php | ⏭️ |
| realhomes_submit_property_ep_section_label | dashboard.php | ⏭️ |
| realhomes_submit_property_epc_current_rating_label | dashboard.php | ⏭️ |
| realhomes_submit_property_epc_potential_rating_label | dashboard.php | ⏭️ |
| realhomes_submit_property_features_label | dashboard.php | ⏭️ |
| realhomes_submit_property_find_address_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_baths_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_beds_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_description_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_image_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_name_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_plans_section_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_price_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_price_postfix_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_size_label | dashboard.php | ⏭️ |
| realhomes_submit_property_floor_size_postfix_label | dashboard.php | ⏭️ |
| realhomes_submit_property_gallery_type_label | dashboard.php | ⏭️ |
| realhomes_submit_property_garage_label | dashboard.php | ⏭️ |
| realhomes_submit_property_homepage_slider_label | dashboard.php | ⏭️ |
| realhomes_submit_property_id_label | dashboard.php | ⏭️ |
| realhomes_submit_property_images_label | dashboard.php | ⏭️ |
| realhomes_submit_property_label_bg_color | dashboard.php | ⏭️ |
| realhomes_submit_property_label_bg_sub | dashboard.php | ⏭️ |
| realhomes_submit_property_label_text | dashboard.php | ⏭️ |
| realhomes_submit_property_label_text_sub | dashboard.php | ⏭️ |
| realhomes_submit_property_lot_size_label | dashboard.php | ⏭️ |
| realhomes_submit_property_lot_size_postfix_label | dashboard.php | ⏭️ |
| realhomes_submit_property_message_to_the_reviewer_label | dashboard.php | ⏭️ |
| realhomes_submit_property_old_price_label | dashboard.php | ⏭️ |
| realhomes_submit_property_owner_address_label | dashboard.php | ⏭️ |
| realhomes_submit_property_owner_contact_label | dashboard.php | ⏭️ |
| realhomes_submit_property_owner_label | dashboard.php | ⏭️ |
| realhomes_submit_property_owner_name_label | dashboard.php | ⏭️ |
| realhomes_submit_property_parent_property_label | dashboard.php | ⏭️ |
| realhomes_submit_property_price_label | dashboard.php | ⏭️ |
| realhomes_submit_property_price_postfix_label | dashboard.php | ⏭️ |
| realhomes_submit_property_price_prefix_label | dashboard.php | ⏭️ |
| realhomes_submit_property_status_label | dashboard.php | ⏭️ |
| realhomes_submit_property_title_label | dashboard.php | ⏭️ |
| realhomes_submit_property_type_label | dashboard.php | ⏭️ |
| realhomes_submit_property_virtual_tour_label | dashboard.php | ⏭️ |
| realhomes_submit_property_year_built_label | dashboard.php | ⏭️ |
| realhomes_user_menu_separator | ultra-header-styles.php | ⏭️ |
| realhomes_users_options_notice | dashboard.php | ⏭️ |
| theme_additional_details_title_separator | basics.php | ⏭️ |
These keys exist only in the new Options Panel and were not previously registered in the Customizer or old ERE settings.
| enable_social_login_facebook | social/social-login.php | 🆕 |
| enable_social_login_google | social/social-login.php | 🆕 |
| enable_social_login_twitter | social/social-login.php | 🆕 |
| ere_compare_properties_setting_heading | miscellaneous/floating-features.php | 🆕 |
| ere_social_login_spacer_1 | social/social-links.php | 🆕 |
| facebook_app_id | social/social-login.php | 🆕 |
| facebook_app_secret | social/social-login.php | 🆕 |
| google_app_api_key | social/social-login.php | 🆕 |
| google_app_client_id | social/social-login.php | 🆕 |
| google_app_client_secret | social/social-login.php | 🆕 |
| inspiry_add_to_fav_property_label | property/single/basic.php | 🆕 |
| inspiry_added_to_fav_property_label | property/single/basic.php | 🆕 |
| inspiry_address_lightbox_enable | property/templates-arthives.php | 🆕 |
| inspiry_agent_field_label | property/search/agents.php | 🆕 |
| inspiry_any_text | property/search/basic.php | 🆕 |
| inspiry_area_field_label | property/single/basic.php | 🆕 |
| inspiry_banner_height | styles/banner.php | 🆕 |
| inspiry_bathrooms_field_label | property/single/basic.php | 🆕 |
| inspiry_bedrooms_field_label | property/single/basic.php | 🆕 |
| inspiry_checkin_label | property/search/basic.php | 🆕 |
| inspiry_checkin_placeholder_text | property/search/basic.php | 🆕 |
| inspiry_checkout_label | property/search/basic.php | 🆕 |
| inspiry_checkout_placeholder_text | property/search/basic.php | 🆕 |
| inspiry_compare_page | miscellaneous/floating-features.php | 🆕 |
| inspiry_description_property_label | property/single/basic.php | 🆕 |
| inspiry_display_property_address | property/single/basic.php | 🆕 |
| inspiry_display_property_views | property/single/property-views.php | 🆕 |
| inspiry_display_title_in_lightbox | property/single/gallery.php | 🆕 |
| inspiry_featured_properties_on_top | property/search/search-page.php | 🆕 |
| inspiry_footer_columns | footer/layout.php | 🆕 |
| inspiry_gallery_slider_type | property/single/gallery.php | 🆕 |
| inspiry_garages_field_label | property/single/basic.php | 🆕 |
| inspiry_guests_label | property/search/basic.php | 🆕 |
| inspiry_guests_placeholder_text | property/search/basic.php | 🆕 |
| inspiry_header_mod_variation_option | header/basic.php | 🆕 |
| inspiry_image_size_full_width | property/single/gallery.php | 🆕 |
| inspiry_keyword_label | property/search/keyword.php | 🆕 |
| inspiry_keyword_placeholder_text | property/search/keyword.php | 🆕 |
| inspiry_lot_size_field_label | property/single/basic.php | 🆕 |
| inspiry_masonry_gallery_count_text | property/single/gallery.php | 🆕 |
| inspiry_mc_cost_prefix | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_display | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_downpayment_default | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_downpayment_field_label | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_first_field_desc | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_first_field_display | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_first_field_title | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_first_field_value | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_graph_type | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_interest_default | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_interest_field_label | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_price_default | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_price_field_label | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_principle_field_label | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_second_field_desc | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_second_field_display | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_second_field_title | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_second_field_value | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_term_default | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_term_field_label | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mc_terms | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mortgage_calculator_statuses | property/single/mortgage-calculator.php | 🆕 |
| inspiry_mortgage_calculator_title | property/single/mortgage-calculator.php | 🆕 |
| inspiry_overview_property_label | property/single/basic.php | 🆕 |
| inspiry_print_property_label | property/single/basic.php | 🆕 |
| inspiry_prop_detail_login | property/single/basic.php | 🆕 |
| inspiry_prop_id_field_label | property/single/basic.php | 🆕 |
| inspiry_properties_list_tax_on_map | property/templates-arthives.php | 🆕 |
| inspiry_property_card_meta | property/templates-arthives.php | 🆕 |
| inspiry_property_detail_header_variation | property/single/basic.php | 🆕 |
| inspiry_property_id_label | property/search/property-id.php | 🆕 |
| inspiry_property_id_placeholder_text | property/search/property-id.php | 🆕 |
| inspiry_property_map_marker_type | property/single/map.php | 🆕 |
| inspiry_property_prev_next_link | property/single/basic.php | 🆕 |
| inspiry_property_ratings | property/single/basic.php | 🆕 |
| inspiry_property_status_label | property/search/property-status.php | 🆕 |
| inspiry_property_type_label | property/search/property-type.php | 🆕 |
| inspiry_property_views_title | property/single/property-views.php | 🆕 |
| inspiry_respoeader_option | property/search.php | 🆕 |
| inspiry_responsive_ddheader_option | property/single.php | 🆕 |
| inspiry_responsive_header_option | header/basic.php | 🆕 |
| inspiry_rvr_guests_field_label | property/single/basic.php | 🆕 |
| inspiry_rvr_min_stay_label | property/single/basic.php | 🆕 |
| inspiry_search_advance_search_expander | property/search/basic.php | 🆕 |
| inspiry_search_button_text | property/search/basic.php | 🆕 |
| inspiry_search_features_title | property/search/property-features.php | 🆕 |
| inspiry_search_form_mod_layout_options | property/search/basic.php | 🆕 |
| inspiry_search_form_multiselect_agents | property/search/agents.php | 🆕 |
| inspiry_search_form_multiselect_locations | property/search/search-form-locations.php | 🆕 |
| inspiry_search_form_multiselect_types | property/search/property-type.php | 🆕 |
| inspiry_search_header_variation | property/search/search-page.php | 🆕 |
| inspiry_search_page | property/search/search-page.php | 🆕 |
| inspiry_search_template_no_result_text | property/search/search-page.php | 🆕 |
| inspiry_search_template_variation | property/search/search-page.php | 🆕 |
| inspiry_sfoi_classes | property/search/basic.php | 🆕 |
| inspiry_share_property_label | property/single/basic.php | 🆕 |
| inspiry_show_search_in_header | header/search-form.php | 🆕 |
| inspiry_year_built_field_label | property/single/basic.php | 🆕 |
| realhomes_agency_field_label | property/search/agencies.php | 🆕 |
| realhomes_agency_ratings | pages/agencies.php | 🆕 |
| realhomes_agent_ratings | pages/agents.php | 🆕 |
| realhomes_ajax_search_results | property/search/search-page.php | 🆕 |
| realhomes_available_sorting_options | property/templates-arthives.php | 🆕 |
| realhomes_footer_designed_text | footer/copyrights.php | 🆕 |
| realhomes_guest_properties_views_page_description | property/single/basic.php | 🆕 |
| realhomes_guest_properties_views_page_title | property/single/basic.php | 🆕 |
| realhomes_guest_property_view_period | property/single/basic.php | 🆕 |
| realhomes_line_social_share | property/single/social.php | 🆕 |
| realhomes_no_results_taxonomies | property/search/search-page.php | 🆕 |
| realhomes_no_results_taxonomies_title | property/search/search-page.php | 🆕 |
| realhomes_no_results_title | property/search/search-page.php | 🆕 |
| realhomes_otp_page | header/login-register.php | 🆕 |
| realhomes_properties_views_count_limit | property/single/basic.php | 🆕 |
| realhomes_properties_views_limit_number | property/single/basic.php | 🆕 |
| realhomes_sample_agent_id | pages/agents.php | 🆕 |
| realhomes_sample_property_id | property/single/basic.php | 🆕 |
| realhomes_save_search_btn_label | dashboard/saved-searches.php | 🆕 |
| realhomes_save_search_btn_tooltip | dashboard/saved-searches.php | 🆕 |
| realhomes_saved_search_email_footer | dashboard/saved-searches.php | 🆕 |
| realhomes_saved_search_email_header | dashboard/saved-searches.php | 🆕 |
| realhomes_saved_search_email_subject | dashboard/saved-searches.php | 🆕 |
| realhomes_saved_searches_all_users_label | dashboard/saved-searches.php | 🆕 |
| realhomes_saved_searches_enabled | dashboard/saved-searches.php | 🆕 |
| realhomes_saved_searches_label | dashboard/saved-searches.php | 🆕 |
| realhomes_saved_searches_required_login | dashboard/saved-searches.php | 🆕 |
| realhomes_search_emails_frequency | dashboard/saved-searches.php | 🆕 |
| realhomes_search_features_display_type | property/search/property-features.php | 🆕 |
| realhomes_search_form_multiselect_agencies | property/search/agencies.php | 🆕 |
| realhomes_search_saved_btn_label | dashboard/saved-searches.php | 🆕 |
| search_form_locations | property/search/basic.php | 🆕 |
| theme_add_meta_tags | property/single/basic.php | 🆕 |
| theme_additional_details_title | property/single/basic.php | 🆕 |
| theme_child_properties_title | property/single/child-properties.php | 🆕 |
| theme_display_social_share | property/single/social.php | 🆕 |
| theme_home_advance_search_title | property/search/basic.php | 🆕 |
| theme_properties_on_search | property/search/search-page.php | 🆕 |
| theme_property_detail_variation | property/single/agent.php | 🆕 |
| theme_property_features_title | property/single/basic.php | 🆕 |
| theme_search_fields | property/search/basic.php | 🆕 |
| theme_search_module | property/search/search-page.php | 🆕 |
| twitter_app_consumer_key | social/social-login.php | 🆕 |
| twitter_app_consumer_secret | social/social-login.php | 🆕 |
| 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 |