Hi,
I have installed your Star Ratings plugin from GitHub and then added the following snippet:
add_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' );
function your_prefix_register_meta_boxes( $meta_boxes ) {
$prefix = '';
$meta_boxes[] = array(
'title' => esc_html__( 'Star Rating', 'text-domain' ),
'id' => 'star-rating',
'post_types' => ['review'],
'context' => 'normal',
'fields' => array(
array(
'id' => 'rating',
'type' => 'group',
'clone' => true, // ALLOW “RATING” GROUP TO BE CLONED
'add_button' => '+ Add Group',
'autosave' => true, // try autosave?
'fields' => array(
array(
'id' => $prefix . 'name',
'type' => 'text',
'name' => esc_html__( 'Name', 'text-domain' ),
'autosave' => true, // try autosave?
),
array(
'id' => $prefix . 'rating',
'type' => 'rating',
'name' => esc_html__( 'Rating', 'text-domain' ),
'autosave' => true, // try autosave?
),
),
),
),
);
return $meta_boxes;
}
I can clone the group. But the star ratings do not save. Also, when I refresh the post/page (browser F5), only one member of the cloned-group is remaining (without star rating). The other clones are no longer shown. Sceenshot here for reference.
Can you please help with the correct code to achieve this?
Kind regards,