Version Description
- General: Fixed backward compatibility for ACF Pro 5.7.10. The function: acf_add_filter_variations() was causing problems.
- Admin: Temporarily removed the 'Options Beta' admin screen. Still needs some works.
Download this release
Release Info
Developer | hwk-fr |
Plugin | Advanced Custom Fields: Extended |
Version | 0.6.0.1 |
Comparing to | |
See all releases |
Code changes from version 0.6 to 0.6.0.1
- acf-extended.php +2 -2
- includes/fields-settings/update.php +2 -1
- includes/fields-settings/validation.php +2 -1
- readme.txt +5 -8
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.6
|
6 |
* Author: hwk
|
7 |
* Author URI: https://hwk.fr
|
8 |
* Text Domain: acfe
|
@@ -54,7 +54,7 @@ function acfe_load(){
|
|
54 |
* Admin Pages
|
55 |
*/
|
56 |
require_once(ACFE_PATH . 'includes/admin/settings.php');
|
57 |
-
require_once(ACFE_PATH . 'includes/admin/options.php');
|
58 |
|
59 |
/**
|
60 |
* Fields settings
|
2 |
/**
|
3 |
* Plugin Name: Advanced Custom Fields: Extended
|
4 |
* Description: Enhancement Suite which improves Advanced Custom Fields administration
|
5 |
+
* Version: 0.6.0.1
|
6 |
* Author: hwk
|
7 |
* Author URI: https://hwk.fr
|
8 |
* Text Domain: acfe
|
54 |
* Admin Pages
|
55 |
*/
|
56 |
require_once(ACFE_PATH . 'includes/admin/settings.php');
|
57 |
+
//require_once(ACFE_PATH . 'includes/admin/options.php');
|
58 |
|
59 |
/**
|
60 |
* Fields settings
|
includes/fields-settings/update.php
CHANGED
@@ -138,7 +138,8 @@ function acfe_update_value($value, $post_id, $field){
|
|
138 |
/**
|
139 |
* Process Setting: Variations
|
140 |
*/
|
141 |
-
|
|
|
142 |
|
143 |
/**
|
144 |
* Setting: ACF Clone Index fix for flexible duplicate
|
138 |
/**
|
139 |
* Process Setting: Variations
|
140 |
*/
|
141 |
+
if(function_exists('acf_add_filter_variations'))
|
142 |
+
acf_add_filter_variations('acfe/update/exclude', array('type', 'name', 'key'), 1);
|
143 |
|
144 |
/**
|
145 |
* Setting: ACF Clone Index fix for flexible duplicate
|
includes/fields-settings/validation.php
CHANGED
@@ -302,7 +302,8 @@ function acfe_validate_value($valid, $value, $field, $input){
|
|
302 |
/**
|
303 |
* Process Setting: Variations
|
304 |
*/
|
305 |
-
|
|
|
306 |
|
307 |
/**
|
308 |
* Setting: ACF Clone Index fix for flexible duplicate
|
302 |
/**
|
303 |
* Process Setting: Variations
|
304 |
*/
|
305 |
+
if(function_exists('acf_add_filter_variations'))
|
306 |
+
acf_add_filter_variations('acfe/validate/exclude', array('type', 'name', 'key'), 1);
|
307 |
|
308 |
/**
|
309 |
* Setting: ACF Clone Index fix for flexible duplicate
|
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.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -141,13 +141,6 @@ Create and manage taxonomies from your WordPress administration (Tools > Taxonom
|
|
141 |
|
142 |
Replaced the native WP Author Metabox with a dynamic version allowing to manage thousands of users without slowing down the post administration.
|
143 |
|
144 |
-
== Options ==
|
145 |
-
|
146 |
-
BETA: Manage all WordPress options from Settings > Options.
|
147 |
-
|
148 |
-
* View, add, edit and remove simple options (string/boolean)
|
149 |
-
* View and remove serialized options (displayed as array for readability)
|
150 |
-
|
151 |
== Enhanced Taxonomy List & Edit Views ==
|
152 |
|
153 |
Taxonomies list & edit views have been tweaked for a more consistent administration experience, using CSS/JS only. Views are now similar to post type edition screens.
|
@@ -210,6 +203,10 @@ Usage example:
|
|
210 |
|
211 |
== Changelog ==
|
212 |
|
|
|
|
|
|
|
|
|
213 |
= 0.6 =
|
214 |
* Field Group: New available location - Post type archive (under Post type). Field group will be displayed on post type list view, as a sidebar. Fields will be saved on the option: `{post_type}_options`. Frontend usage example: `get_field('my_field', 'page_options')`.
|
215 |
* Field Group: New available location - Taxonomy archive (under Taxonomy). Field group will be displayed on taxonomy list view, as a sidebar. Fields will be saved on the option: `tax_{taxonomy}_options`. Frontend usage example: `get_field('my_field', 'tax_category_options')`.
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.1.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 0.6.0.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
141 |
|
142 |
Replaced the native WP Author Metabox with a dynamic version allowing to manage thousands of users without slowing down the post administration.
|
143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
144 |
== Enhanced Taxonomy List & Edit Views ==
|
145 |
|
146 |
Taxonomies list & edit views have been tweaked for a more consistent administration experience, using CSS/JS only. Views are now similar to post type edition screens.
|
203 |
|
204 |
== Changelog ==
|
205 |
|
206 |
+
= 0.6.0.1 =
|
207 |
+
* General: Fixed backward compatibility for ACF Pro 5.7.10. The function: acf_add_filter_variations() was causing problems.
|
208 |
+
* Admin: Temporarily removed the 'Options Beta' admin screen. Still needs some works.
|
209 |
+
|
210 |
= 0.6 =
|
211 |
* Field Group: New available location - Post type archive (under Post type). Field group will be displayed on post type list view, as a sidebar. Fields will be saved on the option: `{post_type}_options`. Frontend usage example: `get_field('my_field', 'page_options')`.
|
212 |
* Field Group: New available location - Taxonomy archive (under Taxonomy). Field group will be displayed on taxonomy list view, as a sidebar. Fields will be saved on the option: `tax_{taxonomy}_options`. Frontend usage example: `get_field('my_field', 'tax_category_options')`.
|