diff --git a/projects/packages/jetpack-mu-wpcom/changelog/fix-pagte-patterns-error b/projects/packages/jetpack-mu-wpcom/changelog/fix-pagte-patterns-error new file mode 100644 index 0000000000000..f6a3e1b1e1387 --- /dev/null +++ b/projects/packages/jetpack-mu-wpcom/changelog/fix-pagte-patterns-error @@ -0,0 +1,4 @@ +Significance: patch +Type: fixed + +Block Editor Nux: Temporary stop load feature from MU WPCOM diff --git a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php index 15940f9e6833b..0fce0b25c59fb 100644 --- a/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php +++ b/projects/packages/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php @@ -174,7 +174,7 @@ public static function load_etk_features_flags() { define( 'MU_WPCOM_STARTER_PAGE_TEMPLATES', true ); define( 'MU_WPCOM_TAGS_EDUCATION', true ); define( 'MU_WPCOM_BLOCK_DESCRIPTION_LINKS', true ); - define( 'MU_WPCOM_BLOCK_EDITOR_NUX', true ); + define( 'MU_WPCOM_BLOCK_EDITOR_NUX', false ); define( 'MU_WPCOM_POSTS_LIST_BLOCK', true ); define( 'MU_WPCOM_JETPACK_COUNTDOWN_BLOCK', true ); define( 'MU_WPCOM_JETPACK_TIMELINE_BLOCK', true ); @@ -218,7 +218,6 @@ public static function load_etk_features() { require_once __DIR__ . '/features/paragraph-block-placeholder/paragraph-block-placeholder.php'; require_once __DIR__ . '/features/tags-education/tags-education.php'; require_once __DIR__ . '/features/wpcom-block-description-links/wpcom-block-description-links.php'; - require_once __DIR__ . '/features/wpcom-block-editor-nux/class-wpcom-block-editor-nux.php'; require_once __DIR__ . '/features/wpcom-blocks/a8c-posts-list/a8c-posts-list.php'; require_once __DIR__ . '/features/wpcom-blocks/event-countdown/event-countdown.php'; require_once __DIR__ . '/features/wpcom-blocks/timeline/timeline.php';