Plugin Directory

Changeset 2955106


Ignore:
Timestamp:
08/17/2023 08:31:05 PM (3 years ago)
Author:
insiderealestate
Message:

Version 2.3.22

Location:
kvcore-idx/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • kvcore-idx/trunk/includes/kvcore/shortcode/class-listing-detail.php

    r2943239 r2955106  
    853853        $hide_mortgage_calculator  = isset($settings["listing_detail"]["hide_mortgage_calculator"] ) ? $settings["listing_detail"]["hide_mortgage_calculator"]  : false;
    854854        if (!empty($this->listing->remarks)) {
    855             $this->listing->remarks = stripslashes($this->listing->remarks);
     855            $this->listing->remarks = stripslashes(utf8_decode($this->listing->remarks));
    856856        }
    857857        $remarks = !empty($this->listing->remarks) ? "<div class=\"kv-container kv-detail-v2-details-description\">{$this->listing->remarks}</div>" : "";
  • kvcore-idx/trunk/kvcore-idx.php

    r2952414 r2955106  
    1717 * Plugin URI:        kvcore-idx
    1818 * Description:       Integrates seamlessly with kvCORE to bring the power of IDX search, high conversion lead capture, and much more to your WordPress site.
    19  * Version:           2.3.20
     19 * Version:           2.3.22
    2020 * Author:            Inside Real Estate
    2121 * Author URI:        https://insiderealestate.com/kvcore/
     
    3333
    3434if( ! defined( 'KVCORE_IDX_PLUGIN_VERSION' ) ) {
    35     define( 'KVCORE_IDX_PLUGIN_VERSION', '2.3.20' );
     35    define( 'KVCORE_IDX_PLUGIN_VERSION', '2.3.22' );
    3636}
    3737
  • kvcore-idx/trunk/public/js/frontend/page/properties.js

    r2952414 r2955106  
    17911791            }
    17921792            data.total = data.recordsTotal;
     1793
     1794            //if passing as public/listings/similar this is undefined workaround
     1795            if (!data.recordsTotal) {
     1796                data.recordsTotal = totalRecords;
     1797            }
     1798
    17931799            data.notShowSold = obscureSoldData();
    17941800            propertiesFullList = data.data.map(kv.Property.addCustomData);
Note: See TracChangeset for help on using the changeset viewer.