also how do you disable this product panels in WCFM for the admin role?
http://prntscr.com/rufd2g
Hi,
Which product types you want to disable?
I will give a code snippet for disable those tabs as well.
Thank
Hi Thanks for the response,
I was able to remove the product types however, do you know how to disable this panels on the product page on wcfm?
Shipping, Attributes, and Advanced? can’t find the proper hook for it.
HI,
That’s great 🙂
Please add this snippet to disable those product tabs –
add_filter( 'wcfm_is_allow_pm_shipping', '__return_false' );
add_filter( 'wcfm_is_allow_pm_attribute', '__return_false' );
add_filter( 'wcfm_is_allow_advanced', '__return_false' );
Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Thank You