• Resolved wordmax

    (@wordmax)


    Having no issues at all previously. Now after latest WP update & plugin updates in same environment as before, we are seeing the following error on the Gutenberg block for Stripe Payment product block on the WP edit page view > Error loading block: Invalid parameter(s): attributes < this is the only thing being displayed in the block area where before it showed the Stripe Payment info that was selected from the drop-down menu to the right side.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support mbrsolution

    (@mbrsolution)

    Hi,

    Now after latest WP update & plugin updates in same environment as before,

    Can you let us know what updates you carried out? I would like to try and see if I can replicate this error myself.

    Kind regards.

    Thread Starter wordmax

    (@wordmax)

    Thanks for the quick response. It looks like the problem has been resolved. Two other plugins updated today and the problem went away. The two plugins were Spectra (https://ww.wp.xz.cn/plugins/ultimate-addons-for-gutenberg/) and Code Snippets (https://ww.wp.xz.cn/plugins/code-snippets/) and I think Code Snippets was the plugin that may have been causing the issue. We were using Code Snippets to implement the following code to put a link in left WP admin menu to show WP reusable Gutenberg blocks, which is makes it easy to find those blocks…

    /**
     * Reusable Blocks accessible in backend
     * @link https://www.billerickson.net/reusable-blocks-accessible-in-wordpress-admin-area
     *
     */
    function be_reusable_blocks_admin_menu() {
        add_menu_page( 'Reusable Blocks', 'Reusable Blocks', 'edit_posts', 'edit.php?post_type=wp_block', '', 'dashicons-editor-table', 22 );
    }
    add_action( 'admin_menu', 'be_reusable_blocks_admin_menu' );

    Thanks

    Plugin Support mbrsolution

    (@mbrsolution)

    Thank you for sharing your findings. I am glad to know that you managed to fix your issue. This might help others with a similar issue as yourself.

    Kind regards.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘After updates > “Error loading block: Invalid parameter(s): attributes”’ is closed to new replies.