Hi
I could not find it in the docs but what priority level does the metabox filters default to? as im trying to override this soo was curious if its possible.
I tried to set the below filter priority to 15...
add_filter( 'rwmb_field_meta', [ $this, 'metaboxfiltertest' ], 15, 3);
and then set the following filter to 10 but the below filterruns after the filter above? even though its set to 10.
add_filter('render_block', [ $this, 'renderblocktest' ], 10, 2);
thanks
Nick