Hey,
i have the latest Metabox AIO installed.
add_action( 'rwmb_after_save_post', function( $post_id ) {
error_log('Action is Fired');
} );
Works just fine!
add_action( 'rwmb_testfield_after_save_post', function( $post_id ) {
error_log('Action is Fired');
} );
Doesn't fire. Where 'testfield' is a simple textfield assigned to a Cpt.
What am i doing wrong?