Advanced Custom Fields: Extended - Version 0.5.5.1

Version Description

  • Module: Dynamic Taxonomy - Fixed Terms PHP warning
  • General: Plugin readme
Download this release

Release Info

Developer hwk-fr
Plugin Icon 128x128 Advanced Custom Fields: Extended
Version 0.5.5.1
Comparing to
See all releases

Code changes from version 0.5.5 to 0.5.5.1

acf-extended.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: Advanced Custom Fields: Extended
4
  * Description: Enhancement Suite which improves Advanced Custom Fields administration
5
- * Version: 0.5.5
6
  * Author: hwk-fr
7
  * Author URI: https://hwk.fr
8
  * Text Domain: acfe
2
  /**
3
  * Plugin Name: Advanced Custom Fields: Extended
4
  * Description: Enhancement Suite which improves Advanced Custom Fields administration
5
+ * Version: 0.5.5.1
6
  * Author: hwk-fr
7
  * Author URI: https://hwk.fr
8
  * Text Domain: acfe
includes/modules/dynamic-taxonomy.php CHANGED
@@ -206,7 +206,7 @@ add_filter('get_terms_args', 'acfe_dt_filter_admin_list', 10, 2);
206
  function acfe_dt_filter_admin_list($args, $taxonomies){
207
 
208
  if(!is_admin())
209
- return;
210
 
211
  global $pagenow;
212
  if($pagenow != 'edit-tags.php')
206
  function acfe_dt_filter_admin_list($args, $taxonomies){
207
 
208
  if(!is_admin())
209
+ return $args;
210
 
211
  global $pagenow;
212
  if($pagenow != 'edit-tags.php')
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: acf, custom fields, meta, admin, fields, form, repeater, content
5
  Requires at least: 4.9
6
  Tested up to: 5.1.1
7
  Requires PHP: 5.6
8
- Stable tag: 0.5.5
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -89,6 +89,15 @@ Display dynamic PHP content using `acf/render_field`
89
  * **New field: Button**
90
  Display a submit button
91
 
 
 
 
 
 
 
 
 
 
92
  == ACF Settings ==
93
 
94
  * **Settings page**
@@ -146,6 +155,10 @@ Create a folder `/acfe-php/` in your theme. Go to your field group administratio
146
 
147
  == Changelog ==
148
 
 
 
 
 
149
  = 0.5.5 =
150
  * Module: Added Dynamic Post Type module
151
  * Module: Added Dynamic Taxonomy module
5
  Requires at least: 4.9
6
  Tested up to: 5.1.1
7
  Requires PHP: 5.6
8
+ Stable tag: 0.5.5.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
89
  * **New field: Button**
90
  Display a submit button
91
 
92
+ * **New field: Post type selection**
93
+ Select any post type (format: checkbox, radio or select)
94
+
95
+ * **New field: Taxonomy selection**
96
+ Select any taxonomy (format: checkbox, radio or select)
97
+
98
+ * **New field: Slug**
99
+ A slug text input (ie: `my-text-input`)
100
+
101
  == ACF Settings ==
102
 
103
  * **Settings page**
155
 
156
  == Changelog ==
157
 
158
+ = 0.5.5.1 =
159
+ * Module: Dynamic Taxonomy - Fixed Terms PHP warning
160
+ * General: Plugin readme
161
+
162
  = 0.5.5 =
163
  * Module: Added Dynamic Post Type module
164
  * Module: Added Dynamic Taxonomy module