How to add metabox ONLY to specific WooCommerce product type [closed]
You should be able to get the current product id using the using the $post global variable and use that with the WooCommerce function get_product() to the the product object and test its product type. public function __construct() { add_action( ‘add_meta_boxes’, array( $this, ‘add_meta_box’ ) ); } public function add_meta_box( $post_type ) { $post_types = … Read more