Answer by Kevinleary.net for Disable Gutenberg text-Settings in all blocks
This was the true, final answer that solved for the exact scenario described in the original question:/** * Disable Native Gutenberg Features */function gutenberg_removals(){...
View ArticleAnswer by fairport for Disable Gutenberg text-Settings in all blocks
There's good answers about disabling the font styles but not about disabling the drop cap.In WordPress 5.8, you can you the new theme.json feature to disable drop caps in your theme. You need to add a...
View ArticleAnswer by jg314 for Disable Gutenberg text-Settings in all blocks
As Jim Rhoades noted in one of the comments, you can declare support for custom font sizes, but leave out the array of font size options. This removes the "Typography" section entirely so there is no...
View ArticleAnswer by WebElaine for Disable Gutenberg text-Settings in all blocks
The closest I can find in the documentation is disabling custom font size (the text input) and forcing the dropdown font size to only contain "Normal".add_action('after_setup_theme',...
View ArticleDisable Gutenberg text-Settings in all blocks
I need to disable the Gutenberg text-settings tab in all Blocks. Is this possible with a funtion in funtions.php?I could disable the colors tab, but found no solution for the text-settings:function...
View Article