Title: Fatal error (Problem with Elementor)
Last modified: April 10, 2022

---

# Fatal error (Problem with Elementor)

 *  [jpmellon](https://wordpress.org/support/users/jpmellon/)
 * (@jpmellon)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/)
 * Hi there,
    my client’s website is not available due to a critical/fatal error.
 * When I deactivate Elementor the website is available. I had an issue with elementor
   and another theme just last week so I think the latest version update caused 
   the issues.
 * This is what debugging spits out:
 *     ```
       Deprecated: _register_controls ist seit Version 3.1.0 veraltet! Benutze stattdessen Elementor\Controls_Stack::register_controls(). in /mnt/web101/a2/99/59188199/htdocs/WordPress_01/wp-includes/functions.php on line 5323 Fatal error: Uncaught Error: Class 'Elementor\Scheme_Typography' not found in /mnt/web101/a2/99/59188199/htdocs/WordPress_01/wp-content/plugins/extended-google-map-for-elementor/widgets/eb-google-map-extended-widget.php:480 Stack trace: #0 /mnt/web101/a2/99/59188199/htdocs/WordPress_01/wp-content/plugins/elementor/includes/base/controls-stack.php(2280): ElementorGoogleMapExtended\Widgets\EB_Google_Map_Extended->_register_controls() #1 /mnt/web101/a2/99/59188199/htdocs/WordPress_01/wp-content/plugins/elementor/includes/base/controls-stack.php(494): Elementor\Controls_Stack->init_controls() #2 /mnt/web101/a2/99/59188199/htdocs/WordPress_01/wp-content/plugins/elementor/includes/base/widget-base.php(177): Elementor\Controls_Stack->get_stack() #3 /mnt/web101/a2/99/59188199/htdocs/WordPress_01/wp-content/plugins/elementor/includes/base/controls-stack.php(300): Elementor\Widget_Base->get_stack() #4 /mnt/web101/a2/99/59188199/htdocs/WordPress_01/wp-content/plugins/elementor/core/files/css/global-css.php(120): Elementor\Controls_S in /mnt/web101/a2/99/59188199/htdocs/WordPress_01/wp-content/plugins/extended-google-map-for-elementor/widgets/eb-google-map-extended-widget.php on line 480
       Es gab einen kritischen Fehler auf deiner Website.
       ```
   
 * Could you help me out here?
    I am using OCEAN WP newest Version 3.2.1 and Elementor
   3.6.2
 * Thanks a lot
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Ffatal-error-problem-with-elementor%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 7 replies - 1 through 7 (of 7 total)

 *  [Abhishek](https://wordpress.org/support/users/abhikr781/)
 * (@abhikr781)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/#post-15547088)
 * Hello,
 * The issue seems coming from the elementor, here you can see the similar reported
   issue.
    [https://forum.elementor.com/fixing-common-issues-33/deprecated-register-controls-is-deprecated-since-version-3-1-0-11123](https://forum.elementor.com/fixing-common-issues-33/deprecated-register-controls-is-deprecated-since-version-3-1-0-11123)
 * Please try to downgrade the elementor version 3.5.6 and check.
 *  [magefix](https://wordpress.org/support/users/magefix/)
 * (@magefix)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/#post-15559553)
 * Hi [@jpmellon](https://wordpress.org/support/users/jpmellon/),
    Another fix is
   described here: [https://forum.elementor.com/development-24/fatal-error-class-elementor-scheme-color-not-found-15404](https://forum.elementor.com/development-24/fatal-error-class-elementor-scheme-color-not-found-15404)
 * It will include a separate fix, which doesn’t require a plugin downgrade.
    “create
   a new .php file in the wp-content/mu-plugins folder. Add this code snippet:”
 *     ```
       <?php
       /**
        * Plugin Name: Elementor Scheme_Color and Scheme_Typography Class Issue
        **/
   
       namespace Elementor;
   
       \add_action(
         'plugins_loaded',
         function() {
           if ( ! class_exists( 'Elementor\Scheme_Color' ) ) {
             class Scheme_Color extends Core\Schemes\Color {}
           }
         }
       );
       \add_action(
         'plugins_loaded',
         function() {
           if ( ! class_exists( 'Elementor\Scheme_Typography' ) ) {
             class Scheme_Typography extends Core\Schemes\Typography {}
           }
         }
       );
       ?>
       ```
   
 *  [grady7926](https://wordpress.org/support/users/grady7926/)
 * (@grady7926)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/#post-15858434)
 * I have the same issue. The Elementor role back option doesn’t work.
 *  [Abhishek](https://wordpress.org/support/users/abhikr781/)
 * (@abhikr781)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/#post-15859780)
 * Hello [@grady7926](https://wordpress.org/support/users/grady7926/) ,
 * Please open a new ticket and share the related details of the issue.
    [https://wordpress.org/support/theme/oceanwp/#new-topic-0](https://wordpress.org/support/theme/oceanwp/#new-topic-0)
 *  [rolfjeger](https://wordpress.org/support/users/rolfjeger/)
 * (@rolfjeger)
 * [3 years, 7 months ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/#post-16120966)
 * [@magefix](https://wordpress.org/support/users/magefix/)
    Thanks, that was a 
   life saver! 🙂
 *  [moisesgomez](https://wordpress.org/support/users/moisesgomez/)
 * (@moisesgomez)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/#post-16406401)
 * Thank you [@magefix](https://wordpress.org/support/users/magefix/) it works as
   magic!!!… for users with the same trouble: if you don´t see the folder mu-plugins,
   you should create it and create inside a file with any name like index.php, write
   there the code and thats it!!
 *  [magefix](https://wordpress.org/support/users/magefix/)
 * (@magefix)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/#post-16406483)
 * [@moisesgomez](https://wordpress.org/support/users/moisesgomez/) I’m glad it 
   worked! ⌊🙂⌉
    -  This reply was modified 3 years, 4 months ago by [magefix](https://wordpress.org/support/users/magefix/).

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Fatal error (Problem with Elementor)’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/oceanwp/4.1.6/screenshot.png)
 * OceanWP
 * [Support Threads](https://wordpress.org/support/theme/oceanwp/)
 * [Active Topics](https://wordpress.org/support/theme/oceanwp/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/oceanwp/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/oceanwp/reviews/)

## Tags

 * [color](https://wordpress.org/support/topic-tag/color/)
 * [fatal](https://wordpress.org/support/topic-tag/fatal/)

 * 7 replies
 * 6 participants
 * Last reply from: [magefix](https://wordpress.org/support/users/magefix/)
 * Last activity: [3 years, 4 months ago](https://wordpress.org/support/topic/fatal-error-problem-with-elementor/#post-16406483)
 * Status: not resolved