Version Description
- Compatibility tag update for WordPress 5.6
Download this release
Release Info
Developer | nsp-code |
Plugin | Category Order and Taxonomy Terms Order |
Version | 1.5.7.4 |
Comparing to | |
See all releases |
Code changes from version 1.5.7.3 to 1.5.7.4
- include/addons.php +3 -0
- readme.txt +6 -3
- taxonomy-terms-order.php +1 -1
include/addons.php
CHANGED
@@ -28,6 +28,9 @@
|
|
28 |
if( ! is_plugin_active( 'woocommerce/woocommerce.php' ))
|
29 |
return $ignore;
|
30 |
|
|
|
|
|
|
|
31 |
//create a list of attribute taxonomies
|
32 |
$attributes = wc_get_attribute_taxonomies();
|
33 |
$found_attributex_tax = array();
|
28 |
if( ! is_plugin_active( 'woocommerce/woocommerce.php' ))
|
29 |
return $ignore;
|
30 |
|
31 |
+
if ( ! function_exists ( 'wc_get_attribute_taxonomies' ) )
|
32 |
+
return $ignore;
|
33 |
+
|
34 |
//create a list of attribute taxonomies
|
35 |
$attributes = wc_get_attribute_taxonomies();
|
36 |
$found_attributex_tax = array();
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: nsp-code
|
|
3 |
Donate link: http://www.nsp-code.com/donate.php
|
4 |
Tags: category order,terms order, taxonomy order, admin order, categories sort, order category
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.5.7.
|
8 |
|
9 |
Order Categories and all custom taxonomies terms (hierarchically) and child terms using a Drag and Drop Sortable javascript capability.
|
10 |
|
@@ -59,8 +59,11 @@ Consider upgrading to our advanced version of this plugin at a very resonable pr
|
|
59 |
|
60 |
== Change Log ==
|
61 |
|
|
|
|
|
|
|
62 |
= 1.5.7.3 =
|
63 |
-
|
64 |
|
65 |
= 1.5.7.2 =
|
66 |
- Compatibility tag update for WordPress 5.4
|
3 |
Donate link: http://www.nsp-code.com/donate.php
|
4 |
Tags: category order,terms order, taxonomy order, admin order, categories sort, order category
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 5.6
|
7 |
+
Stable tag: 1.5.7.4
|
8 |
|
9 |
Order Categories and all custom taxonomies terms (hierarchically) and child terms using a Drag and Drop Sortable javascript capability.
|
10 |
|
59 |
|
60 |
== Change Log ==
|
61 |
|
62 |
+
= 1.5.7.4 =
|
63 |
+
- Compatibility tag update for WordPress 5.6
|
64 |
+
|
65 |
= 1.5.7.3 =
|
66 |
+
- Compatibility tag update for WordPress 5.5
|
67 |
|
68 |
= 1.5.7.2 =
|
69 |
- Compatibility tag update for WordPress 5.4
|
taxonomy-terms-order.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Category Order and Taxonomy Terms Order
|
4 |
Plugin URI: http://www.nsp-code.com
|
5 |
Description: Order Categories and all custom taxonomies terms (hierarchically) and child terms using a Drag and Drop Sortable javascript capability.
|
6 |
-
Version: 1.5.7.
|
7 |
Author: Nsp-Code
|
8 |
Author URI: http://www.nsp-code.com
|
9 |
Author Email: electronice_delphi@yahoo.com
|
3 |
Plugin Name: Category Order and Taxonomy Terms Order
|
4 |
Plugin URI: http://www.nsp-code.com
|
5 |
Description: Order Categories and all custom taxonomies terms (hierarchically) and child terms using a Drag and Drop Sortable javascript capability.
|
6 |
+
Version: 1.5.7.4
|
7 |
Author: Nsp-Code
|
8 |
Author URI: http://www.nsp-code.com
|
9 |
Author Email: electronice_delphi@yahoo.com
|