Version Description
- Fix - js issue that stops plugin from work
Download this release
Release Info
Developer | dholovnia |
Plugin | Advanced AJAX Product Filters |
Version | 1.1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.1.0 to 1.1.0.1
- README.md +3 -3
- contributors.txt +1 -0
- js/widget.min.js +3 -1
- readme.txt +10 -1
- woocommerce-filters.php +1 -1
README.md
CHANGED
@@ -4,8 +4,8 @@ Contributors: dholovnia, berocket
|
|
4 |
Donate link: http://berocket.com
|
5 |
Tags: filters, product filters, ajax product filters, advanced product filters, woocommerce filters, woocommerce product filters, woocommerce ajax product filters
|
6 |
Requires at least: 3.9
|
7 |
-
Tested up to: 4.1
|
8 |
-
Stable tag:
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -35,7 +35,7 @@ http://woocommerce-product-filter.berocket.com
|
|
35 |
*check installation*
|
36 |
|
37 |
|
38 |
-
=
|
39 |
* Show all values - on plugin settings page you can enable option to show all values no matter if they are used or not
|
40 |
* Values order - you can set values order when editing attribute. You can set how to order (by id, name or custom). If
|
41 |
you set to order `by custom` you can drag&drop values up and down and set your own order.
|
4 |
Donate link: http://berocket.com
|
5 |
Tags: filters, product filters, ajax product filters, advanced product filters, woocommerce filters, woocommerce product filters, woocommerce ajax product filters
|
6 |
Requires at least: 3.9
|
7 |
+
Tested up to: 4.1
|
8 |
+
Stable tag: 2.0.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
35 |
*check installation*
|
36 |
|
37 |
|
38 |
+
= In recent updates: =
|
39 |
* Show all values - on plugin settings page you can enable option to show all values no matter if they are used or not
|
40 |
* Values order - you can set values order when editing attribute. You can set how to order (by id, name or custom). If
|
41 |
you set to order `by custom` you can drag&drop values up and down and set your own order.
|
contributors.txt
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
BeRocket
|
js/widget.min.js
CHANGED
@@ -123,7 +123,9 @@
|
|
123 |
}
|
124 |
}
|
125 |
|
126 |
-
function updateProducts( $force
|
|
|
|
|
127 |
// if we have update_button on the page we must wait for it to be clicked
|
128 |
if ( ! $force && berocket_aapf_widget_wait_for_button ) return false;
|
129 |
|
123 |
}
|
124 |
}
|
125 |
|
126 |
+
function updateProducts( $force ){
|
127 |
+
if ( typeof $force == 'undefined' ) $force = false;
|
128 |
+
|
129 |
// if we have update_button on the page we must wait for it to be clicked
|
130 |
if ( ! $force && berocket_aapf_widget_wait_for_button ) return false;
|
131 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: http://berocket.com
|
|
5 |
Tags: filters, product filters, ajax product filters, advanced product filters, woocommerce filters, woocommerce product filters, woocommerce ajax product filters
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 4.1.1
|
8 |
-
Stable tag: 1.1.0
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -110,6 +110,15 @@ you set to order `by custom` you can drag&drop values up and down and set yo
|
|
110 |
|
111 |
== Changelog ==
|
112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
= 1.0.4.5 =
|
114 |
* Enhancement - values order added. Now order of values can be controlled through attribute options
|
115 |
* Enhancement/Fix - Better support for for category pages
|
5 |
Tags: filters, product filters, ajax product filters, advanced product filters, woocommerce filters, woocommerce product filters, woocommerce ajax product filters
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 4.1.1
|
8 |
+
Stable tag: 1.1.0.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
110 |
|
111 |
== Changelog ==
|
112 |
|
113 |
+
= 1.1.0.1 =
|
114 |
+
* Fix - js issue that stops plugin from work
|
115 |
+
|
116 |
+
= 1.1.0 =
|
117 |
+
* Enhancement - Show all values - on plugin settings page you can enable option to show all values no matter if they are used or not
|
118 |
+
* Enhancement - Values order - you can set values order when editing attribute. You can set how to order (by id, name or custom). If
|
119 |
+
you set to order `by custom` you can drag&drop values up and down and set your own order.
|
120 |
+
* Small fixes
|
121 |
+
|
122 |
= 1.0.4.5 =
|
123 |
* Enhancement - values order added. Now order of values can be controlled through attribute options
|
124 |
* Enhancement/Fix - Better support for for category pages
|
woocommerce-filters.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Advanced AJAX Product Filters for WooCommerce
|
4 |
Plugin URI: http://berocket.com/wp-plugins/product-filters
|
5 |
Description: Advanced AJAX Product Filters for WooCommerce
|
6 |
-
Version: 1.1.0
|
7 |
Author: BeRocket
|
8 |
Author URI: http://berocket.com
|
9 |
*/
|
3 |
Plugin Name: Advanced AJAX Product Filters for WooCommerce
|
4 |
Plugin URI: http://berocket.com/wp-plugins/product-filters
|
5 |
Description: Advanced AJAX Product Filters for WooCommerce
|
6 |
+
Version: 1.1.0.1
|
7 |
Author: BeRocket
|
8 |
Author URI: http://berocket.com
|
9 |
*/
|