From 424022691385f914edc5535db47ff9e255ef7ea8 Mon Sep 17 00:00:00 2001 From: ehlovader Date: Tue, 27 Jun 2023 17:48:47 -0400 Subject: [PATCH] Remove the wp enqueue media in avatar default filter Fixes conflict with plugins in which wp.media is not loaded or correctly working. Elementor page editor specifically fails to function due to this. --- includes/class-simple-local-avatars.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/includes/class-simple-local-avatars.php b/includes/class-simple-local-avatars.php index 0eb8fa84..9a637330 100644 --- a/includes/class-simple-local-avatars.php +++ b/includes/class-simple-local-avatars.php @@ -1436,9 +1436,6 @@ private function clear_user_avatar_cache( $local_avatars, $user_id, $media_id ) * @return array Default options of avatar. */ public function add_avatar_default_field( $defaults ) { - if ( ! did_action( 'wp_enqueue_media' ) ) { - wp_enqueue_media(); - } $default_avatar_file_url = ''; $default_avatar_file_id = get_option( 'simple_local_avatar_default', '' ); if ( ! empty( $default_avatar_file_id ) ) {