From 3887c913db2f83d11b9b47d630aa07268a78f007 Mon Sep 17 00:00:00 2001 From: Yan Metelitsa Date: Sat, 8 Mar 2025 04:06:00 +0300 Subject: [PATCH 1/4] Fix Release Date Year --- readme.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.txt b/readme.txt index cf7bd7b5..492a6021 100644 --- a/readme.txt +++ b/readme.txt @@ -52,7 +52,7 @@ This plugin builds upon and is a fork of the previous work done by the contribut == Changelog == = 6.4.1 = -*Release Date 7 Mar 2024* +*Release Date 7 Mar 2025* * Forked from Advanced Custom FieldsĀ® * Various updates to coding standards. From 8ad19aa87f9e400889936e4e1c9761f25700cdf4 Mon Sep 17 00:00:00 2001 From: Yan Metelitsa Date: Fri, 28 Mar 2025 18:49:47 +0300 Subject: [PATCH 2/4] Fix empty shortcode output --- includes/api/api-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/api-template.php b/includes/api/api-template.php index c91c563c..316823f1 100644 --- a/includes/api/api-template.php +++ b/includes/api/api-template.php @@ -1084,7 +1084,7 @@ function acf_shortcode( $atts ) { if ( is_preview() ) { return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . esc_html__( 'The requested ACF field is not allowed to be output in bindings or the ACF Shortcode.', 'secure-custom-fields' ) . ']' ); } else { - return; + return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . sprintf( esc_html__( 'You need to enable "Allow Access to Value in Editor UI" in the "%s" field parameters to display it in the ACF Shortcode.', 'secure-custom-fields' ), $field[ 'label' ] ) . ']' ); } } From 6a804861fcb33e807efbc95d81e28f883546349a Mon Sep 17 00:00:00 2001 From: Yan Metelitsa Date: Fri, 28 Mar 2025 19:02:41 +0300 Subject: [PATCH 3/4] Fix empty shortcode output --- includes/api/api-template.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/api/api-template.php b/includes/api/api-template.php index 316823f1..18fd5df4 100644 --- a/includes/api/api-template.php +++ b/includes/api/api-template.php @@ -1084,7 +1084,8 @@ function acf_shortcode( $atts ) { if ( is_preview() ) { return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . esc_html__( 'The requested ACF field is not allowed to be output in bindings or the ACF Shortcode.', 'secure-custom-fields' ) . ']' ); } else { - return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . sprintf( esc_html__( 'You need to enable "Allow Access to Value in Editor UI" in the "%s" field parameters to display it in the ACF Shortcode.', 'secure-custom-fields' ), $field[ 'label' ] ) . ']' ); + /* translators: %s Field name */ + return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . sprintf( esc_html__( 'You need to enable "Allow Access to Value in Editor UI" in the "%s" field parameters to display it in the ACF Shortcode.', 'secure-custom-fields' ), $field[ 'name' ] ) . ']' ); } } From 7a8df68a3e001ad654199951c646bdf6693e3f44 Mon Sep 17 00:00:00 2001 From: Brandon Kraft Date: Wed, 2 Apr 2025 08:41:37 -0500 Subject: [PATCH 4/4] phpcs --- includes/api/api-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/api/api-template.php b/includes/api/api-template.php index 18fd5df4..25163ea1 100644 --- a/includes/api/api-template.php +++ b/includes/api/api-template.php @@ -1085,7 +1085,7 @@ function acf_shortcode( $atts ) { return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . esc_html__( 'The requested ACF field is not allowed to be output in bindings or the ACF Shortcode.', 'secure-custom-fields' ) . ']' ); } else { /* translators: %s Field name */ - return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . sprintf( esc_html__( 'You need to enable "Allow Access to Value in Editor UI" in the "%s" field parameters to display it in the ACF Shortcode.', 'secure-custom-fields' ), $field[ 'name' ] ) . ']' ); + return apply_filters( 'acf/shortcode/field_not_allowed_message', '[' . sprintf( esc_html__( 'You need to enable "Allow Access to Value in Editor UI" in the "%s" field parameters to display it in the ACF Shortcode.', 'secure-custom-fields' ), $field['name'] ) . ']' ); } }