Support » Plugin: Multipage » Multipage and Gutenberg editor

  • Spent quite a while figuring this out: the plugin worked for some posts and did not for others, finally boiled it down to-
    MULTIPAGE DOES NOT PLAY NICELY WITH GUTENBERG

    quick fix: disable Gutenberg for your theme by adding the below to your functions.php file:

    // disable Gutenberg for posts
    add_filter('use_block_editor_for_post', '__return_false', 10);
    
    // disable Gutenberg for post types
    add_filter('use_block_editor_for_post_type', '__return_false', 10);

    Hope that will help others!

    • This topic was modified 3 years, 10 months ago by oaviv.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Sergio de Falco

    (@sgr33n)

    Hi, thanks for your feedback. Version 1.5 is at rc1 and fixes this and introduces a new Gutenberg subpage block.

    Thread Starter oaviv

    (@oaviv)

    Sounds good.
    Also, there is an inconsistent behavior when displaying the list of site’s posts (eg homepage, loop): sometimes it behaves as expected and the displayed part of the post is cut off on the first shortcode (nextpage), and sometimes the entire post content is displayed…

    Plugin Author Sergio de Falco

    (@sgr33n)

    Please wait for the new version and check if this is still happening.
    Thanks.

    Thread Starter oaviv

    (@oaviv)

    Will do.
    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Multipage and Gutenberg editor’ is closed to new replies.