function plt_hide_integrate_fonepay_in_woocommerce_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Payment Info" meta box.
remove_meta_box('mv_other_fields', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_integrate_fonepay_in_woocommerce_metaboxes', 20);