Error loading block: Invalid parameter(s): attributes
-
Hello! I can’t use the plugin due to an error:
Error loading block: Invalid parameter(s): attributes
Conflict with the Conditional Blocks plugin. I tried to apply this code, but the result remains the same:/** * Add the "Blocks CSS: CSS Editor for Gutenberg Blocks" plugin attributes to the Flex Posts attributes so the WordPress * REST API schema validates. * * @hooked flex_posts_attributes * @see https://www.ads-software.com/plugins/conditional-blocks/ * @see flex_posts_register_block() block.php:31 * @see register_block_type() * * @param array $attributes The validation schema as registered with register_block_type(). * @return array $attributes */ add_filter( 'flex_posts_attributes', function( $attributes ) { include_once ABSPATH . 'wp-admin/includes/plugin.php'; if( is_plugin_active( 'conditional-blocks/conditional-blocks.php' ) ) { $attributes['hasCustomCSS'] = array( 'type' => 'boolean', 'default' => false, ); $attributes['customCSS'] = array( 'type' => 'string', 'default' => '', ); } return $attributes; });
Please help!
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Error loading block: Invalid parameter(s): attributes’ is closed to new replies.