acf/bindings/field_not_supported_message filter-hookACF 1.0

Usage

add_filter( 'acf/bindings/field_not_supported_message', 'wp_kama_acf_bindings_field_not_supported_message_filter' );

/**
 * Function for `acf/bindings/field_not_supported_message` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_acf_bindings_field_not_supported_message_filter( $string ){
	// filter...
	return $string;
}
$string
-

Where the hook is called

Bindings::get_value()
acf/bindings/field_not_supported_message
acf/src/Blocks/Bindings.php 70
return apply_filters( 'acf/bindings/field_not_supported_message', '[' . esc_html__( 'The requested ACF field type does not support output in Block Bindings or the ACF shortcode.', 'acf' ) . ']' );

Where the hook is used in Advanced Custom Fields PRO

Usage not found.