Hi
I am using the rwmb_meta_boxes
filter to create a block and use render_template
to a PHP file e.g. below. I want to call a filter e.g. https://docs.metabox.io/category/filters/ inside the 'test.php' file. Is this possible? I am asking as I want a setting inside the block form to be passed into the filters to alter the form layout e.g. rwmb_outer_html
$meta_boxes[] = [
'title' => 'Product Basket',
'id' => 'dc-product-basket-block',
'description' => 'Product basket for your store',
'type' => 'block',
'render_template' => __DIR__ . '/template/test.php',
];