I’d love a filter for the “no_value_message” in flexible content field areas.
In some cases I might want “to start creating your layout” to say something else.
Thanks for the amazing plugin!
Hi @mannieschumpert
Good idea. I’ll add this to the to-do
Cheers
E
Hi @mannieschumpert
Just wanted to let you know this filter has been added in a new version (1.1.1). You can use the filter like so:
add_filter('acf/fields/flexible_content/no_value_message', function( $message, $field ){
return 'custom message';
}, 10, 2);
Thanks
E