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.
They are different filter hooks rwmb_field_meta and render_block so the priority doesn't mean in this case. The priority only works when you add two callback functions to a filter hook. For example: