• Resolved studiostekker

    (@studiostekker)


    Since the most recent update of Elementor, I’m getting the following error making it unable to open the website.

    Uncaught Error: Class 'Elementor\Scheme_Typography' not found plugins/download-button-for-elementor/widgets/download-button-widget.php on line 267

    Only when disabling your plugin I have acces to my website again.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • jdvalentine

    (@jdvalentine)

    I just saw the same issue. Elementor deprecated Elementor\Scheme_Typography and then removed it some versions later. Apparently the developer should use Elementor\Core\Schemes\Typography instead.

    Thread Starter studiostekker

    (@studiostekker)

    Yep, you’re absolutely right.

    For anyone seeing this topic, wanting to fix it yourself, edit the plugin file in widgets\download-button-widget.php

    Replace line 267
    'scheme' => \Elementor\Scheme_Typography::TYPOGRAPHY_4,
    with
    'scheme' => \Elementor\Core\Schemes\Typography::TYPOGRAPHY_4,

    Replace line 307
    'type' => \Elementor\Scheme_Color::get_type(),
    with
    'type' => \Elementor\Core\Schemes\Color::get_type(),

    Replace line 308
    'value' => \Elementor\Scheme_Color::COLOR_4,
    with
    'value' => \Elementor\Core\Schemes\Color::COLOR_4,

    mariusgh

    (@mariusgh)

    Thank you for providing the fix!

    Thank you so much @studiostekker works perfectly fine!

    3 Years since the last plugin update.. seems risky to build a new page with this plugin -_-

    I’ll try to contact the maintainer, to figure out whats the future plans here.

    Plugin Author clicklabsde

    (@clicklabsde)

    We just uploaded an update to fix this issue.
    Thank you for the help @studiostekker!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Not working with the lastest versions of Elementor.’ is closed to new replies.