phpwordpresselementorfatal-error

Elementor Error: Class 'Elementor\Core\Schemes\Typography' not found after updating Elementor plugin (WordPress)


After updating the Elementor plugin to version 3.28.4 on my WordPress site (version 6.8), I started getting a fatal PHP error:

PHP Fatal error: Uncaught Error: Class 'Elementor\Core\Schemes\Typography' not found in /home/username/public_html/wp-content/plugins/partdo-core/elementor/widgets/partdo-home-slider.php:312

My setup:

  • Theme: Partdo v1.1.2
  • Child Theme: Partdo Child v1.1.2
  • Elementor Plugin: 3.28.4

How can I solve this Elementor/Core/Schemes/Typography not found error?


Solution

  • This error happens because the Elementor\Core\Schemes\Typography class was removed in newer Elementor versions.
    The Partdo theme’s "partdo-core" plugin still uses the old class, causing a fatal error.

    Here’s how I solved it:

    1. Backup the old folder first:

      • Go to your hosting file manager or FTP.

      • Navigate to:

        public_html/wp-content/plugins/partdo-core/elementor
        
        
      • Rename it to something like:

        elementor_backup
        
        
    2. Download the latest Partdo theme from your ThemeForest account.

    3. Extract the downloaded Partdo theme zip on your computer.

    4. Inside extracted files, navigate to:

      partdo/plugins/partdo-core.zip
      
      
    5. Extract partdo-core.zip file.

    6. Then go to:

      partdo/plugins/partdo-core/elementor
      
      
    7. Copy the elementor folder from here.

    8. Upload the new elementor folder to:

      public_html/wp-content/plugins/partdo-core/
      
      

      (where you backed up the old one.)

    9. Now, refresh your site. The error will be gone! 🎉


    📌 Why this happens:

    When Elementor updated to v3.28+, they moved many classes around and removed old paths like Elementor\Core\Schemes\Typography.
    The theme/plugin you were using (Partdo Core plugin) was coded for old Elementor versions.
    The newer partdo-core plugin bundled with the latest theme fixed compatibility.


    📌 Tip: