I have installed a fresh recent version of Radicle for testing purposes. Since in my current theme. When I select media/text and try to stack it’s view it renders in the front end stacked but not in the editor.
The preview window when hovering over group option it shows the text below the media upload but it never renders like that in editor. The preview below is actually hovering over group and columns is the previous choice.
I have tried the following
Moving the
'block-templates',
/**
* @link https://developer.wordpress.org/block-editor/developers/themes/theme-support/#disabling-the-default-block-patterns
*/
'core-block-patterns',
'block-styles',
Into theme support
from remove
I have also just tried commenting out of remove
and with or without block-styles
in theme support
/**
* Theme supports
*/
'support' => [
/**
* @link https://developer.wordpress.org/reference/functions/add_theme_support/#html5
*/
'html5' => [
'caption',
'comment-form',
'comment-list',
'gallery',
'search-form',
'script',
'style',
],
/**
* @link https://wordpress.org/gutenberg/handbook/designers-developers/developers/themes/theme-support/#wide-alignment
*/
'align-wide',
/**
* @link https://developer.wordpress.org/reference/functions/add_theme_support/#title-tag
*/
'title-tag',
/**
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
'post-thumbnails',
/**
* @link https://wordpress.org/gutenberg/handbook/designers-developers/developers/themes/theme-support/#wide-alignment
*/
'responsive-embeds',
/**
* @link https://developer.wordpress.org/themes/advanced-topics/customizer-api/#theme-support-in-sidebars
*/
'customize-selective-refresh-widgets',
/**
* @link https://wptavern.com/gutenberg-10-5-embeds-pdfs-adds-verse-block-color-options-and-introduces-new-patterns
*/
'block-templates',
/**
* @link https://developer.wordpress.org/block-editor/developers/themes/theme-support/#disabling-the-default-block-patterns
*/
'core-block-patterns',
'block-styles',
],
/**
* Remove theme supports
*/
'remove' => [
],
I have also tried commenting out the following in the bud config
//await bud.tapAsync(sourceThemeValues);
//.setPath(bud.path(`public/dist/theme.json`));
and removing the theme.json file all together.
I am not sure what to do at this point.
I know the media text block should behave the way the preview shows.
A) because the preview shows it that way and
B) because it behaves this way on the wordpress gutenburg official demo page
Any help would be greatly appreciated.
thanks