Hi!
Thanks for your good words about this plugin.
That can be managed based on the roles of the WordPress users but with a custom solution. If you are interested then get in touch with me directly via my email fahidjavid[at]gmail[dot]com
Kind regards,
Fahid
Alright, i think i found it but i am having a hard time finding the name of the metabox. Under here you will find my code. What am I doing wrong? I tried admin_menu and admin_head, but i think i have the wrong metaboxname?
add_action( ‘admin_menu’ , ‘wpdocs_remove_post_custom_fields’ );
function wpdocs_remove_post_custom_fields() {
remove_meta_box( ‘stars-rating.postbox’ , ‘post’ , ‘normal’ );
}
add_action( ‘admin_head’ , ‘wpdocs_remove_post_custom_fields2’ );
function wpdocs_remove_post_custom_fields2() {
remove_meta_box( ‘stars-rating.postbox’ , ‘post’ , ‘normal’ );
}`
I found it.
Problem solved.