PublishPress Capabilities ignore classic editor
-
I thought I was finally at peace and it is possible to have full control with “Editor Feature Restriction”
but I find out that disabling my box taxonomies in the “Document Panel” section
does it only on Gutenberg!misery and despair we will still have to install another plugin for that ..
I need to disable Gutenberg and I need to hide all my taxonomies for all roles, because they are included in acf I have to make the interface as friendly and simple as possiblecan you take this scenario and this detail into account for the next update and enable compatibility with no Gutenberg ?
add_filter('use_block_editor_for_post_type', 'prefix_disable_gutenberg', 10, 2); function prefix_disable_gutenberg($current_status, $post_type) { // Use your post type name if ($post_type === 'property') return false; if ($post_type === 'post') return false; if ($post_type === 'logo') return false; if ($post_type === 'acf-test') return false; return $current_status; }
Viewing 11 replies - 1 through 11 (of 11 total)
Viewing 11 replies - 1 through 11 (of 11 total)
- The topic ‘PublishPress Capabilities ignore classic editor’ is closed to new replies.