This might be a dumb question, but I just can't figure out how to solve this.
I have couple special page templates and I'd like to use the default WP editor with them and not show the page builder. I already managed to limit the visibility of the default editor to these special page templates, but I can't get rid of the page builder metabox on these templates.
The code below I came up with kind of does the trick on the edit view. But it breaks the template part saving on the edit view and also the wds_page_builder_area() function on the front end - no template parts show up.
Hi,
This might be a dumb question, but I just can't figure out how to solve this.
I have couple special page templates and I'd like to use the default WP editor with them and not show the page builder. I already managed to limit the visibility of the default editor to these special page templates, but I can't get rid of the page builder metabox on these templates.
The code below I came up with kind of does the trick on the edit view. But it breaks the template part saving on the edit view and also the wds_page_builder_area() function on the front end - no template parts show up.
`function wpfm_register_page_builder_areas() {
} add_action( 'after_setup_theme', 'wpfm_register_page_builder_areas' );`
Surely there must be a better way to limit the page builder visibility based on the page template, isn't there?