Plugin Directory

Changeset 2946871


Ignore:
Timestamp:
08/03/2023 02:09:40 AM (3 years ago)
Author:
8blocks
Message:

3.0.8 20230802 = ajax fix

Location:
home-value/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • home-value/trunk/home-values.php

    r2945752 r2946871  
    44 * Plugin Name: Home Value
    55 * Description: Home Value provides your website visitors the ability to get accurate home price valuations of their applicable property(s).
    6  * Version: 3.0.7
     6 * Version: 3.0.8
    77 * Author: 8blocks
    88 * Author Email:    support@8blocks.com
     
    1717
    1818// Plugin directory path and URL.
    19 define('HOME_VALUES_PLUGIN_VERSION', '3.0.7');
     19define('HOME_VALUES_PLUGIN_VERSION', '3.0.8');
    2020define('HOME_VALUES_PLUGIN_DIR', plugin_dir_path(__FILE__));
    2121define('HOME_VALUES_PLUGIN_URL', plugin_dir_url(__FILE__));
  • home-value/trunk/public/js/ajax-form.js

    r2931195 r2946871  
    4141        // check if address updated
    4242        if (window.addressUpdated) {
    43           errorMessage.style.display = 'none';
     43          if (errorMessage) errorMessage.style.display = 'none';
     44          // errorMessage.style.display = 'none';
    4445          submitForm($('#8b-home-value'));
    4546        } else {
    4647          // Remove the 'hv-form-loading' class when an error occurs
    4748          $('#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          }
    5053          initializeNewForm();
    5154        }
  • home-value/trunk/readme.txt

    r2945752 r2946871  
    8080== Changelog ==
    8181
     82= 3.0.8 20230802 =
     83
     84* ajax fix
     85
    8286= 3.0.7 20230731 =
    8387
Note: See TracChangeset for help on using the changeset viewer.