Error on my wordpress site when the MAKE plugin is installed

I am doing (or trying to) create a little automation on my site. It works great and creates the media and posts and using the Make connector to Wordpress, it does create the post.

The issue is that when I go to my site to edit the post, I get a white screen with two buttons and the page stops. I copied the error code:

Error: The entity being edited (postType, undefined) does not have a loaded config.

at https://My_blog_site.net/wp-content/plugins/gutenberg/build/core-data/index.min.js?ver=99bb3f3a9fe400c3bc59:1:229744
    at https://My_blog_site.net/wp-content/plugins/gutenberg/build/data/index.min.js?ver=71db7892453ff3860580:1:14227
    at https://My_blog_site.net/wp-content/plugins/gutenberg/build/redux-routine/index.min.js?ver=9f493c4f56b923ec86c8:1:8597
    at https://My_blog_site.net/wp-content/plugins/gutenberg/build/data/index.min.js?ver=71db7892453ff3860580:1:9120
    at Object.dispatch (https://My_blog_site.net/wp-content/plugins/gutenberg/build/data/index.min.js?ver=71db7892453ff3860580:1:9478)
    at Object.editEntityRecord (https://My_blog_site.net/wp-content/plugins/gutenberg/build/data/index.min.js?ver=71db7892453ff3860580:1:14828)
    at https://My_blog_site.net/wp-content/plugins/gutenberg/build/editor/index.min.js?ver=3b38371e60c48865c354:1:41970
    at https://My_blog_site.net/wp-content/plugins/gutenberg/build/data/index.min.js?ver=71db7892453ff3860580:1:14227
    at https://My_blog_site.net/wp-content/plugins/gutenberg/build/redux-routine/index.min.js?ver=9f493c4f56b923ec86c8:1:8597
    at https://My_blog_site.net/wp-content/plugins/gutenberg/build/data/index.min.js?ver=71db7892453ff3860580:1:9120

Error: The entity being edited (postType, undefined) does not have a loaded config.

    at https://My_blog_site.net/wp-includes/js/dist/core-data.min.js?ver=8224153d27ea1b378c5a:2:15296
    at https://My_blog_site.net/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2:11056
    at https://My_blog_site.net/wp-includes/js/dist/redux-routine.min.js?ver=a0a172871afaeb261566:9:750
    at https://My_blog_site.net/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2:10641
    at Object.dispatch (https://My_blog_site.net/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2:10999)
    at Object.editEntityRecord (https://My_blog_site.net/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2:16389)
    at https://My_blog_site.net/wp-includes/js/dist/editor.min.js?ver=d362bb0f0c3fd99674fe:7:40206
    at https://My_blog_site.net/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2:11056
    at https://My_blog_site.net/wp-includes/js/dist/redux-routine.min.js?ver=a0a172871afaeb261566:9:750
    at https://My_blog_site.net/wp-includes/js/dist/data.min.js?ver=7c62e39de0308c73d50c:2:10641

I took these while trying to troubleshoot. The upper one is when the Gutenberg editor is enabled and the second is with it disabled. I disabled ALL My plugins and enabled each one and it was the MAKE CONNECTOR that seems to be causing the error, for the page to be un-editable. If I disable it, I can edit the post. Since that is a key function, I would like it work. I don’t want to have to go in a toggle the connector on and off. Some of the automations might fail as I am reviewing content.

Any help?

Hi,
I have same problem. I had the plugin deactivated, and i did not remembered why. Yesterday I activated… and today I discovered I cannot edit any content type with Gutenberg.
Thanks for posting, this gave me the correct path to solve: Just disconnect again.

I think I experienced this problem since first time i tried the plugin, a couple of years ago.

I’m unable to connect to wordpress. How did you manage to? I’m getting error 503 on make

It sounds like the issue is related to how the Make connector interacts with WordPress when creating posts. The error message suggests that the post type configuration isn’t being properly loaded when opening the editor, which is likely why disabling the Make connector resolves the issue.

A few things you could try to fix this without constantly toggling the connector:

  1. Check the Post Type Registration – If the automation creates a custom post type, ensure that it’s properly registered before the post is edited in Gutenberg. Sometimes, posts created via API don’t have the right metadata, causing conflicts.

  2. Manually Assign Post Type Before Editing – Try running a quick test by manually updating the post type in the database (via phpMyAdmin or a snippet) before editing in Gutenberg:

    UPDATE wp_posts SET post_type = 'post' WHERE ID = YOUR_POST_ID;
    

    If this fixes the issue, the automation might be missing a step in setting the post type correctly.

  3. Ensure REST API Compatibility – Gutenberg relies on the REST API to fetch post details. If the Make connector isn’t properly passing post type data, it could lead to the “postType, undefined” error. You can test by visiting:

    https://your-site.com/wp-json/wp/v2/posts/YOUR_POST_ID
    

    If the response is incomplete, the automation might need adjustments to ensure posts are correctly formatted.

  4. Test with Classic Editor or Elementor – If disabling Gutenberg allows you to edit posts, but switching to Elementor also works, then the issue may be specific to how Gutenberg interprets post metadata. Some users have reported similar conflicts with post types when using both Gutenberg and Elementor together.

  5. Force a Post Update After Creation – Try adding an extra step in your automation to update the post after it’s created:

    wp_update_post([
        'ID' => YOUR_POST_ID,
        'post_status' => 'publish',
    ]);
    

    This can help ensure the post has all required data before it’s loaded into the editor.

Since both Gutenberg and Elementor handle post editing differently, testing how each one interacts with the posts created via automation can help narrow down the issue. Hope this helps!