acf/shortcode/field_not_allowed_message filter-hookACF 1.0

Usage

add_filter( 'acf/shortcode/field_not_allowed_message', 'wp_kama_acf_shortcode_field_not_allowed_message_filter' );

/**
 * Function for `acf/shortcode/field_not_allowed_message` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_acf_shortcode_field_not_allowed_message_filter( $string ){
	// filter...
	return $string;
}
$string
-

Where the hook is called

acf_shortcode()
acf/shortcode/field_not_allowed_message
acf/includes/api/api-template.php 1094
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.', 'acf' ) . ']' );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.