• Resolved Nextendweb

    (@nextendweb)


    Currently Ninja Forms prevents Gutenberg to run the iframed post editor. To make iframed editor to work, you need to upgrade your block definition. You can read more on iframed editor:https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/

    The solution:

    • JS -> registerBlockType definition -> add apiVersion: 3 (both ninja-forms/submissions-table and ninja-forms/form)
    • PHP -> blocks/form/block.json -> add “apiVersion”: 3

    Until Ninja Forms gets fixed and if you do not use blocks provided by Ninja Forms, you can disable them to access the iframed editor.

    add_action('init', function () {
    unregister_block_type('ninja-forms/form');
    unregister_block_type('ninja-forms/submissions-table');
    }, 100);
    • This topic was modified 1 year ago by Nextendweb.
Viewing 1 replies (of 1 total)
  • Plugin Support Mia

    (@xmiax)

    Hi
    Thanks for reaching out.
    Please report this using the contact form located here to get it looked at faster.
    Thanks!
    Mia

Viewing 1 replies (of 1 total)

The topic ‘Support Gutenberg block api version 3’ is closed to new replies.