Editor loading issues after Elementor 3.7
-
There are a couple Elementor deprecations in bafg-elementor/bafg-register.php that now prevent Elementor’s editor from loading in some cases when Elementor Pro is also installed.
To resolve the issue, I changed:
\Elementor\Plugin::instance()->widgets_manager->register_widget_type
to
\Elementor\Plugin::instance()->widgets_manager->register
and
add_action( 'elementor/widgets/widgets_registered', [ $this, 'register_widgets' ] );
to
add_action( 'elementor/widgets/register', [ $this, 'register_widgets' ] );
Reference:
https://developers.elementor.com/v3-5-planned-deprecations/
https://github.com/elementor/elementor/issues/19562
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Editor loading issues after Elementor 3.7’ is closed to new replies.