Ajax Search for WooCommerce - Version 1.3.1

Version Description

Download this release

Release Info

Developer damian-gora
Plugin Icon 128x128 Ajax Search for WooCommerce
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3.0 to 1.3.1

Files changed (3) hide show
  1. ajax-search-for-woocommerce.php +1 -1
  2. readme.txt +3 -1
  3. widget.php +1 -1
ajax-search-for-woocommerce.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: AJAX Search for WooCommerce
5
  * Plugin URI: https://wordpress.org/plugins/ajax-search-for-woocommerce/
6
  * Description: Allows your customers to search products easily and quickly. It will display the results instantly while typing in an inputbox.
7
- * Version: 1.3.0
8
  * Author: Damian Góra
9
  * Author URI: http://damiangora.com
10
  * Text Domain: ajax-search-for-woocommerce
4
  * Plugin Name: AJAX Search for WooCommerce
5
  * Plugin URI: https://wordpress.org/plugins/ajax-search-for-woocommerce/
6
  * Description: Allows your customers to search products easily and quickly. It will display the results instantly while typing in an inputbox.
7
+ * Version: 1.3.1
8
  * Author: Damian Góra
9
  * Author URI: http://damiangora.com
10
  * Text Domain: ajax-search-for-woocommerce
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: woocomerce search, ajax search, live search, product search, woocommerce
5
  Requires at least: 3.8
6
  Tested up to: 5.0.2
7
  Requires PHP: 5.5
8
- Stable tag: 1.3.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -68,6 +68,8 @@ Any suggestions or comments are welcome. Feel free to contact me using this [con
68
 
69
  == Changelog ==
70
 
 
 
71
 
72
  = 1.3.0, January 06, 2019 =
73
 
5
  Requires at least: 3.8
6
  Tested up to: 5.0.2
7
  Requires PHP: 5.5
8
+ Stable tag: 1.3.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.3.1, January 06, 2019 =
72
+ * FIX: PHP error with widget
73
 
74
  = 1.3.0, January 06, 2019 =
75
 
widget.php CHANGED
@@ -47,7 +47,7 @@ if ( class_exists( 'WC_Widget' ) ) {
47
 
48
  $this->widget_start( $args, $instance );
49
 
50
- echo \DgoraWcas\Shortcode::get_form($args);
51
 
52
  $this->widget_end( $args );
53
  }
47
 
48
  $this->widget_start( $args, $instance );
49
 
50
+ echo \DgoraWcas\Shortcode::getForm($args);
51
 
52
  $this->widget_end( $args );
53
  }