Hi everyone! Yes, i found the solution, but its requires make some changes in scripts.js file in plugin`s folder. So:
CHANGE THIS:
$('<div />').attr('id', 'bbconv-editor').attr('style', 'display: none').appendTo('body');
wp.editPost.initializeEditor('bbconv-editor', 'post', 1, settings);
WITH THIS:
const settings = {
editorMode: 'visual',
panels: {
'post-status': {
opened: true
}
},
features: {
fixedToolbar: false,
welcomeGuide: true,
fullscreenMode: true,
showIconLabels: false,
themeStyles: true,
showBlockBreadcrumbs: true,
welcomeGuideTemplate: true
},
hiddenBlockTypes: [],
preferredStyleVariations: {},
localAutosaveInterval: 15
};
$('<div />').attr('id', 'bbconv-editor').attr('style', 'display: none').appendTo('body');
wp.editPost.initializeEditor('bbconv-editor', 'post', 1, settings);
-
This reply was modified 3 years ago by mironezes.
-
This reply was modified 3 years ago by mironezes.