Changeset 2955106
- Timestamp:
- 08/17/2023 08:31:05 PM (3 years ago)
- Location:
- kvcore-idx/trunk
- Files:
-
- 3 edited
-
includes/kvcore/shortcode/class-listing-detail.php (modified) (1 diff)
-
kvcore-idx.php (modified) (2 diffs)
-
public/js/frontend/page/properties.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kvcore-idx/trunk/includes/kvcore/shortcode/class-listing-detail.php
r2943239 r2955106 853 853 $hide_mortgage_calculator = isset($settings["listing_detail"]["hide_mortgage_calculator"] ) ? $settings["listing_detail"]["hide_mortgage_calculator"] : false; 854 854 if (!empty($this->listing->remarks)) { 855 $this->listing->remarks = stripslashes( $this->listing->remarks);855 $this->listing->remarks = stripslashes(utf8_decode($this->listing->remarks)); 856 856 } 857 857 $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 17 17 * Plugin URI: kvcore-idx 18 18 * 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.2 019 * Version: 2.3.22 20 20 * Author: Inside Real Estate 21 21 * Author URI: https://insiderealestate.com/kvcore/ … … 33 33 34 34 if( ! defined( 'KVCORE_IDX_PLUGIN_VERSION' ) ) { 35 define( 'KVCORE_IDX_PLUGIN_VERSION', '2.3.2 0' );35 define( 'KVCORE_IDX_PLUGIN_VERSION', '2.3.22' ); 36 36 } 37 37 -
kvcore-idx/trunk/public/js/frontend/page/properties.js
r2952414 r2955106 1791 1791 } 1792 1792 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 1793 1799 data.notShowSold = obscureSoldData(); 1794 1800 propertiesFullList = data.data.map(kv.Property.addCustomData);
Note: See TracChangeset
for help on using the changeset viewer.