Remove "product_data_visibility" from submitbox
-
Hi,
I’m trying to remove the visibility options in the submit box when adding or updating a product.
The option is added with the following code
// Visibility option add_action( 'post_submitbox_misc_actions', array( $this, 'product_data_visibility' ) );
And the Debug Bar plugins shows
post_submitbox_misc_actions Priority: 10 [object] WooCommerce_Product_Vendors_Commissions -> custom_actions_content [object] WC_Admin_CPT_Product -> product_data_visibility
I’ve tried to remove it with the following code
// Remove catalog visibility option remove_action( 'post_submitbox_misc_actions', 'product_data_visibility', 10 );
What am I missing?
- The topic ‘Remove "product_data_visibility" from submitbox’ is closed to new replies.