#2066
Vladimir
Keymaster

Jawad,

Quick fix is open includes/pro/classes/meta-boxes.php file and replace 11 priority at lines 26,27,28 to the 99, like this


add_action('add_meta_boxes', array($this, 'remove_blocked_metaboxes'), 99);
add_action('wp_dashboard_setup', array($this, 'remove_blocked_metaboxes'), 99);
add_action('wp_user_dashboard_setup', array($this, 'remove_blocked_metaboxes'), 99);

As I discovered WooCommerce added its metaboxes with 20 and 30 priorities. So we should use higher priority to remove them later than they were added.