Plugin Directory

Changeset 1794338


Ignore:
Timestamp:
12/29/2017 08:37:12 PM (8 years ago)
Author:
maxchirkov
Message:

Version 1.4.8

  • Fixes: mortgage calc not taking into effect some of the shortcode attributres.
  • Fixes: neighborhood shortcode's location of the nearby businesses.
Location:
simple-real-estate-pack-4/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • simple-real-estate-pack-4/trunk/includes/srp-education.php

    r1494651 r1794338  
    11<?php
    2 define('EDU_API_URL', 'http://api.education.com/service/service.php');
    3 define('EDU_API_KEY', '65f5fef47d17f7562c88128cae993b11');
     2define('EDU_API_URL', null);
     3define('EDU_API_KEY', null);
    44define('RESF', 'xml');
    55
  • simple-real-estate-pack-4/trunk/includes/srp-profile.php

    r1494651 r1794338  
    485485  if (!function_exists('srp_Yelp_shortcode'))
    486486    return;
    487   if (!($content = srp_Yelp_shortcode($atts = array("lat" => $srp_property_values['lat'], "lng" => $srp_property_values['lng'], 'radius' => srp_get_radius('yelp'), 'output' => 'table', 'sortby' => 'distance', 'term' => null, 'num_biz_requested' => null, 'ajax' => null))))
     487  if (!($content = srp_Yelp_shortcode($atts = array("location" => $srp_property_values['zip_code'], "lat" => $srp_property_values['lat'], "lng" => $srp_property_values['lng'], 'radius' => srp_get_radius('yelp'), 'output' => 'table', 'sortby' => 'distance', 'term' => null, 'num_biz_requested' => null, 'ajax' => null))))
    488488    return;
    489489
  • simple-real-estate-pack-4/trunk/includes/srp-widgets.php

    r1678739 r1794338  
    2626        }
    2727
    28         $instance = array_merge((array)$instance, (array)$options);
     28        $instance = array_merge((array)$options, (array)$instance);
    2929
    3030        $price_of_home = (isset($instance['price_of_home']) && !empty($instance['price_of_home'])) ? $instance['price_of_home'] : null;
    3131        $down_payment = (isset($instance['down_payment']) && !empty($instance['down_payment'])) ? $instance['down_payment'] : null;
    3232        $mortgage_term = (isset($instance['mortgage_term']) && !empty($instance['mortgage_term'])) ? $instance['mortgage_term'] : null;
    33         $interest_rate = (isset($instance['annual_interest_rate']) && !empty($instance['annual_interest_rate'])) ? $instance['annual_interest_rate'] : null;
     33        $interest_rate = (isset($instance['interest_rate']) && !empty($instance['interest_rate'])) ? $instance['interest_rate'] : null;
    3434
    3535        //check widget-related variables
  • simple-real-estate-pack-4/trunk/readme.txt

    r1758148 r1794338  
    44Tags: mortgage, mortgage calculator, real estate, realty, widget, plugin, listing, AJAX, homes, neighborhood, schools, yelp, zillow, map, trulia, altos, charts, statistics, real estate market
    55Requires at least: 3.0
    6 Tested up to: 4.8.3
    7 Stable tag: 1.4.7
     6Tested up to: 4.9.1
     7Stable tag: 1.4.8
    88
    99Package of real estate tools and widgets designed specifically for real estate industry blogs and sites.
     
    222222== Changelog ==
    223223
     224**Version 1.4.8**
     225- Fixes: mortgage calc not taking into effect some of the shortcode attributres.
     226- Fixes: neighborhood shortcode's location of the nearby businesses.
     227
    224228**Version 1.4.7**
    225229- Fixes small issue with the Thickbox modals.
  • simple-real-estate-pack-4/trunk/srp.php

    r1758148 r1794338  
    44Plugin URI: http://www.phoenixhomes.com/tech/simple-real-estate-pack
    55Description: Package of real estate tools and widgets designed specifically for real estate industry blogs and sites. Includes mortgage and home affordability calculators, closing cost estimator, live mortgage rates, Trulia statistical graphs, local schools and other features.
    6 Version: 1.4.7
     6Version: 1.4.8
    77Author: Max Chirkov
    88Author URI: http://www.PhoenixHomes.com
Note: See TracChangeset for help on using the changeset viewer.