Tagged: classic editor
Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
August 1, 2021 at 10:08 am #1313683
Hallo @enfold
“plötzlich” werden die Widgets in einem neuen Editor dargestellt. Die Meldung mit einer “Lösung” für die vorherige Ansicht verweist auf den “Classic Editor”, der aber nicht funktioniert, oder ich sehe es nicht wo ich umstellen soll.
Gut, ich könnte damit leben, aber
1. im Widget-Text ist jetzt im Bearbeiten-Modus die Datenschutzerklärung mit drin???
2. außerdem ist der zu editierende Text links im Block verschwunden.Habt ihr einen Lösungsvorschlag?
August 2, 2021 at 11:15 am #1313878Hey werbeagenturlauf,
Please try this in your functions.php file:
/** * With WP 5.8 block editor was introduced to widget page. This is currently not supported by Enfold. * Based on https://wordpress.org/plugins/classic-widgets/ we disable this feature. * * If you want to use the new widget page and use a child theme add in functions.php of the child theme: * * $avia_config['use_block_widget_page'] = true; * * @since 4.8.4.1 */ if( ! isset( $avia_config['use_block_widget_page'] ) || $avia_config['use_block_widget_page'] !== true ) { // Disables the block editor from managing widgets in the Gutenberg plugin. add_filter( 'gutenberg_use_widgets_block_editor', '__return_false' ); // Disables the block editor from managing widgets. add_filter( 'use_widgets_block_editor', '__return_false' ); }Or try installing this plugin: https://wordpress.org/plugins/classic-widgets/
Best regards,
RikardAugust 2, 2021 at 11:41 am #1313885Thanks @Rikard for your solution. the plugin-installation works fine!
Best regards
Michael F. KrausAugust 3, 2021 at 1:17 pm #1314164 -
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.
