This is how I create the field, I want to change the id "feature_list" to "highlight_features" but not work.
add_filter( 'rwmb_meta_boxes', 'highlight_features_register_meta_boxes' );
function highlight_features_register_meta_boxes( $meta_boxes ) {
$prefix = '';
$meta_boxes[] = [
'title' => 'Highlight Features',
'id' => 'highlight_features',
'post_types' => 'product',
'context' => 'normal',
'fields' => [
[
'type' => 'wysiwyg',
'name' => 'Feature',
'id' => $prefix . 'feature_list',
//'id' => $prefix . 'highlight_features', <-- not work
],
],
];
return $meta_boxes;
}