Replies: 1
Exactly like martin4nbi, I have found that one CSS file is missing in the plugin and provokes a 404 when trying to load this file.
The missing CSS is /wp-content/plugins/elementor-caldera-forms/assets/css/elementor-caldera-forms.css
Maybe the file is not supposed to exist, the call should be removed from /wp-content/plugins/elementor-caldera-forms/elementor-caldera-forms.php, line 44.
On the time being, I fixed this call by adding this to my child-theme functions.php:
remove_action( ‘wp_enqueue_scripts’, ‘eael_caldera_forms_enqueue’ );
Thanks