Forums
Forums / Plugin: Show Content Only / disable for none admin
(@maarouf79)
9 years, 1 month ago
Hi First at all, really nice plugin! Is it possible to disable the plugin in product page for none admin?
9 years ago
I solved with this code inside the theme php
add_action( 'add_meta_boxes' , 'remove_my_meta_boxes', 40 ); function remove_my_meta_boxes() { remove_meta_box( 'contentonly', 'product', 'side'); remove_meta_box( 'misc-pub-section public-post-preview', 'product', 'side'); }
The topic ‘disable for none admin’ is closed to new replies.