I want to remove all unnecessary tabs from the WooCommerce product page in the backend. I've already found an article (
How to remove woocommerce tab?), which describes, how to remove the description, review or additional information tab in the backend. (e.g. unset( $tabs['reviews'] );
).
The last two tabs are from the WooCommerce Subscription plugin and our CRM. If I use var_dump($tabs)
, the two tabs aren't shown in the array and can't be removed the same way. How can I find the name of the tabs and how can I remove them?