Skip to content

Commit dcf22a6

Browse files
committed
v6.6.2
**Malware check:** ✅ Passed Signed-off-by: mavrokordato <info@wordpress-premium.net>
1 parent f91a452 commit dcf22a6

File tree

353 files changed

+75892
-71687
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

353 files changed

+75892
-71687
lines changed

README.md

Lines changed: 19 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
>
1717
> Upon activation, the plugin will display a message that it has not been registered. To resolve this, go to "ACF" → "Updates" and enter **any random text** into the field and press "Activate License".
1818
19+
### License Code
20+
21+
```bash
22+
83A5BB0E-2AD5-1646-90BC-7A42AE592CF5
23+
```
24+
1925
This is the **fully activated premium version** of the plugin, provided by [wordpress-premium.net](https://www.wordpress-premium.net?utm_source=acf). It has been scanned for security issues and is intended **for evaluation purposes only**. To use Advanced Custom Fields PRO on a live website, please [purchase a license](https://www.advancedcustomfields.com/pro/) directly from the official website.
2026

2127
**Important:** Unlicensed ("nulled") usage may violate the developer's terms and will not include official updates or support.
@@ -28,21 +34,19 @@ This is the **fully activated premium version** of the plugin, provided by [word
2834
2935
## Changelog
3036

31-
### v6.5.1
32-
33-
**Released:** September 10th, 2025
34-
35-
* Enhancement - The Flexible Content “Expand All” and “Collapse All” button now appear correctly on mobile
36-
* Enhancement - The Flexible Content delete layout button is now back in the main layout header, making it easier to delete layouts
37-
* Enhancement - The JSON import tool now limits the selectable files to JSON files
38-
* Fix - Disabled Flexible Content layouts are no longer counted towards min/max layout validation
39-
* Fix - The top “Add Row” button for layouts is now disabled when layouts have reached the max layouts validation
40-
* Fix - The per-layout “Add Row” and “Duplicate Layout” buttons are now disabled when layouts have reached the max layouts validation
41-
* Fix - Disabling Flexible Content layouts no longer disables layouts in cloned Flexible Content fields using a different post ID on the same page
42-
* Fix - Flexible Content “Add Layout” menu is no longer hidden by some field types
43-
* Fix - Flexible Content layout names can now allow some safe HTML
44-
* Fix - When creating a temporary post type during import, ACF now correctly sets the ACF post type, rather than defaulting to post
45-
* Fix - ACF PRO updates are now shown even when no other plugins have an update available
37+
### v6.6.2
38+
39+
**Release Date:** 29th October 2025
40+
41+
* Enhancement - Added a new `convert_field_name_to_lowercase` JS filter to allow uppercase letters in ACF field names
42+
* Enhancement - The form for V3 Blocks can now be optionally hidden from the sidebar via a new `hideFieldsInSidebar` setting in block.json
43+
* Enhancement - V3 Blocks now display an "Open Expanded Editor" button in the sidebar for easier access to the full edit form
44+
* Fix - The buttons to reorder ACF metaboxes are no longer hidden for metaboxes in the block editor sidebar
45+
* Fix - V3 Blocks now display a fallback message when the block preview can't be rendered due to invalid HTML being used in field values
46+
* Fix - V3 Blocks no longer show a loading spinner when preloaded
47+
* Fix - V3 Blocks now save default field values even if the block wasn't interacted with before saving
48+
* Fix - Pressing CMD/CTRL + Z no longer causes the fields to disappear in V3 Blocks
49+
* Fix - The form for V3 Blocks now opens on the left side in RTL languages
4650

4751
---
4852

acf.php

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,24 @@
99
* Plugin Name: Advanced Custom Fields PRO
1010
* Plugin URI: https://www.advancedcustomfields.com
1111
* Description: Customize WordPress with powerful, professional and intuitive fields.
12-
* Version: 6.5.1
12+
* Version: 6.6.2
1313
* Author: WP Engine
1414
* Author URI: https://wpengine.com/?utm_source=wordpress.org&utm_medium=referral&utm_campaign=plugin_directory&utm_content=advanced_custom_fields
1515
* Update URI: https://www.advancedcustomfields.com/pro
1616
* Text Domain: acf
1717
* Domain Path: /lang
1818
* Requires PHP: 7.4
19-
* Requires at least: 6.0
19+
* Requires at least: 6.2
20+
*/
21+
22+
/**
23+
* @package ACF
24+
* @author WP Engine
25+
*
26+
* © 2025 Advanced Custom Fields (ACF®). All rights reserved.
27+
* "ACF" is a trademark of WP Engine.
28+
* Licensed under the GNU General Public License v2 or later.
29+
* https://www.gnu.org/licenses/gpl-2.0.html
2030
*/
2131

2232
if ( ! defined( 'ABSPATH' ) ) {
@@ -115,7 +125,7 @@ class ACF {
115125
*
116126
* @var string
117127
*/
118-
public $version = '6.5.1';
128+
public $version = '6.6.2';
119129

120130
/**
121131
* The plugin settings array.

assets/build/css/acf-field-group.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-global.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/acf-input.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/css/pro/acf-pro-input.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf-field-group.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf-input.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf-internal-post-type.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/build/js/acf.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)