Version Description
- General: Fixed loading sequence when
get_field
was called directly in the functions file - Field: Flexible Content - Fixed Dynamic Preview overlay z-index
Download this release
Release Info
Developer | hwk-fr |
Plugin | Advanced Custom Fields: Extended |
Version | 0.8.4.1 |
Comparing to | |
See all releases |
Code changes from version 0.8.4 to 0.8.4.1
- acf-extended.php +4 -4
- assets/acf-extended-fc.css +2 -1
- readme.txt +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.8.4
|
6 |
* Author: ACF Extended
|
7 |
* Author URI: https://www.acf-extended.com
|
8 |
* Text Domain: acfe
|
@@ -16,7 +16,7 @@ if(!class_exists('ACFE')):
|
|
16 |
class ACFE{
|
17 |
|
18 |
// Version
|
19 |
-
var $version = '0.8.4';
|
20 |
|
21 |
// Settings
|
22 |
var $settings = array();
|
@@ -69,7 +69,7 @@ class ACFE{
|
|
69 |
include_once(ACFE_PATH . 'init.php');
|
70 |
|
71 |
// Load
|
72 |
-
add_action('
|
73 |
|
74 |
}
|
75 |
|
@@ -95,7 +95,7 @@ class ACFE{
|
|
95 |
add_action('acf/include_fields', array($this, 'autosync'), 5);
|
96 |
|
97 |
// Fields
|
98 |
-
add_action('acf/include_field_types', array($this, 'fields'));
|
99 |
|
100 |
// Tools
|
101 |
add_action('acf/include_admin_tools', array($this, 'tools'));
|
2 |
/**
|
3 |
* Plugin Name: Advanced Custom Fields: Extended
|
4 |
* Description: Enhancement Suite which improves Advanced Custom Fields administration
|
5 |
+
* Version: 0.8.4.1
|
6 |
* Author: ACF Extended
|
7 |
* Author URI: https://www.acf-extended.com
|
8 |
* Text Domain: acfe
|
16 |
class ACFE{
|
17 |
|
18 |
// Version
|
19 |
+
var $version = '0.8.4.1';
|
20 |
|
21 |
// Settings
|
22 |
var $settings = array();
|
69 |
include_once(ACFE_PATH . 'init.php');
|
70 |
|
71 |
// Load
|
72 |
+
add_action('acf/include_field_types', array($this, 'load'));
|
73 |
|
74 |
}
|
75 |
|
95 |
add_action('acf/include_fields', array($this, 'autosync'), 5);
|
96 |
|
97 |
// Fields
|
98 |
+
add_action('acf/include_field_types', array($this, 'fields'), 99);
|
99 |
|
100 |
// Tools
|
101 |
add_action('acf/include_admin_tools', array($this, 'tools'));
|
assets/acf-extended-fc.css
CHANGED
@@ -104,7 +104,7 @@
|
|
104 |
}
|
105 |
|
106 |
.layout > .acfe-fc-placeholder > a{
|
107 |
-
z-index:
|
108 |
position:absolute;
|
109 |
top:50%;
|
110 |
left:50%;
|
@@ -197,6 +197,7 @@ body:not(.acf-admin-5-3) .layout > .acfe-fc-placeholder > a span{
|
|
197 |
.layout > .acfe-fc-placeholder:hover .acfe-fc-overlay,
|
198 |
.layout > .acfe-fc-placeholder .acfe-fc-overlay.-hover{
|
199 |
background-color:rgba(255,255,255,0.7);
|
|
|
200 |
}
|
201 |
|
202 |
.layout > .acfe-fc-placeholder.acfe-fc-preview.-loading > a span{
|
104 |
}
|
105 |
|
106 |
.layout > .acfe-fc-placeholder > a{
|
107 |
+
z-index:2;
|
108 |
position:absolute;
|
109 |
top:50%;
|
110 |
left:50%;
|
197 |
.layout > .acfe-fc-placeholder:hover .acfe-fc-overlay,
|
198 |
.layout > .acfe-fc-placeholder .acfe-fc-overlay.-hover{
|
199 |
background-color:rgba(255,255,255,0.7);
|
200 |
+
z-index:1;
|
201 |
}
|
202 |
|
203 |
.layout > .acfe-fc-placeholder.acfe-fc-preview.-loading > a span{
|
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.3
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 0.8.4
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -678,6 +678,10 @@ function my_acfe_modules(){
|
|
678 |
|
679 |
== Changelog ==
|
680 |
|
|
|
|
|
|
|
|
|
681 |
= 0.8.4 =
|
682 |
* Module: Added Single Meta Save feature - Compress all fields values from the current post, term or user into one single meta data. This feature is disabled by default, to enable it, use `acf_update_setting('acfe/modules/single_meta', true);`. More informations available in the readme.
|
683 |
* Module: Dynamic Post Types - Added `while(have_archive()): the_archive();` logic when the "Admin Archive Page" setting is turned on. This template tags can be used in the `archive-post-type.php` template which makes `get_field('my_field')` calls easier
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 5.3
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 0.8.4.1
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
678 |
|
679 |
== Changelog ==
|
680 |
|
681 |
+
= 0.8.4.1 =
|
682 |
+
* General: Fixed loading sequence when `get_field` was called directly in the functions file
|
683 |
+
* Field: Flexible Content - Fixed Dynamic Preview overlay z-index
|
684 |
+
|
685 |
= 0.8.4 =
|
686 |
* Module: Added Single Meta Save feature - Compress all fields values from the current post, term or user into one single meta data. This feature is disabled by default, to enable it, use `acf_update_setting('acfe/modules/single_meta', true);`. More informations available in the readme.
|
687 |
* Module: Dynamic Post Types - Added `while(have_archive()): the_archive();` logic when the "Admin Archive Page" setting is turned on. This template tags can be used in the `archive-post-type.php` template which makes `get_field('my_field')` calls easier
|