Changeset 2946871
- Timestamp:
- 08/03/2023 02:09:40 AM (3 years ago)
- Location:
- home-value/trunk
- Files:
-
- 3 edited
-
home-values.php (modified) (2 diffs)
-
public/js/ajax-form.js (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
home-value/trunk/home-values.php
r2945752 r2946871 4 4 * Plugin Name: Home Value 5 5 * Description: Home Value provides your website visitors the ability to get accurate home price valuations of their applicable property(s). 6 * Version: 3.0. 76 * Version: 3.0.8 7 7 * Author: 8blocks 8 8 * Author Email: support@8blocks.com … … 17 17 18 18 // Plugin directory path and URL. 19 define('HOME_VALUES_PLUGIN_VERSION', '3.0. 7');19 define('HOME_VALUES_PLUGIN_VERSION', '3.0.8'); 20 20 define('HOME_VALUES_PLUGIN_DIR', plugin_dir_path(__FILE__)); 21 21 define('HOME_VALUES_PLUGIN_URL', plugin_dir_url(__FILE__)); -
home-value/trunk/public/js/ajax-form.js
r2931195 r2946871 41 41 // check if address updated 42 42 if (window.addressUpdated) { 43 errorMessage.style.display = 'none'; 43 if (errorMessage) errorMessage.style.display = 'none'; 44 // errorMessage.style.display = 'none'; 44 45 submitForm($('#8b-home-value')); 45 46 } else { 46 47 // Remove the 'hv-form-loading' class when an error occurs 47 48 $('#8b-home-value').removeClass('hv-form-loading'); 48 errorMessage.innerHTML = 'Please select a valid address from the suggestions.'; 49 errorMessage.style.display = 'block'; 49 if (errorMessage) { 50 errorMessage.innerHTML = 'Please select a valid address from the suggestions.'; 51 errorMessage.style.display = 'block'; 52 } 50 53 initializeNewForm(); 51 54 } -
home-value/trunk/readme.txt
r2945752 r2946871 80 80 == Changelog == 81 81 82 = 3.0.8 20230802 = 83 84 * ajax fix 85 82 86 = 3.0.7 20230731 = 83 87
Note: See TracChangeset
for help on using the changeset viewer.