Fix for Deprecated Warning with Elementor
-
With Elementor 3.10.1 and YITH WooCommerce Quick View, this error appears:
PHP Deprecated: elementor/widgets/widgets_registered is deprecated since version 3.5.0! Use elementor/widgets/register instead
In line 48 of file
yith-woocommerce-quick-view/plugin-fw/includes/builders/elementor/class-yith-elementor.php
replace
add_action( 'elementor/widgets/widgets_registered', array( $this, 'register_widgets' ) )
by
if (version_compare( ELEMENTOR_VERSION, '3.5.0', '>=' )) { add_action( 'elementor/widgets/register', array( $this, 'register_widgets' ) ); } else { add_action( 'elementor/widgets/widgets_registered', array( $this, 'register_widgets' ) ); }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Fix for Deprecated Warning with Elementor’ is closed to new replies.