Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Layerslide won't edit or save #255058

    That did not work either..

    in reply to: Disable Default Editor #192208

    Update. Actually I may have figured half the problem out…

    Wordpress has a built in feature for this exact issue.

    function remove_editor() {
    remove_post_type_support(‘page’, ‘editor’);
    }
    add_action(‘admin_init’, ‘remove_editor’);

    … This is almost a perfect solution however, now when I create a new page, the button is still there but the editor is not. So what I am left with is a blank space and I have to click the layout builder button for it to appear.

    Anyone know of a way to make the builder default as the first choice?

Viewing 2 posts - 1 through 2 (of 2 total)