Hi there,
I’ve tried installing the plugin locally and on a staging server – in neither do I actually see the Feature block when trying to add a new block on a page. Can you think of a reason why this would be?
Thanks so much!
]]>Please, update the block to work with the latest release of Gutenberg, the blocks.source
object is deprecated and not available since Gutenberg 2.4 (https://github.com/WordPress/gutenberg/blob/master/docs/deprecated.md), wp.blocks.InspectorControls.*
components are also deprecated and not available anymore. Lines 2 – 8 of block.js can be changed like that:
var el = element.createElement;
var BlockControls = wp.blocks.BlockControls;
var AlignmentToolbar = wp.blocks.AlignmentToolbar;
var MediaUpload = wp.blocks.MediaUpload;
var InspectorControls = wp.blocks.InspectorControls;
var TextControl = wp.components.TextControl;
var SelectControl = wp.components.SelectControl;
]]>
And I am using Gutenberg 2.1.0. So I added two feature blocks to this page and it looks very nice in the editor, but after I published the page, it just places all the features below each other.
What can i do to troubleshoot this with you.