• In the Elementor integration the widgets are registered on init and this causes other plugin widgets to not be registered.

    (in file: ecwid-shopping-cart\includes\integrations\class-ecwid-integration-elementor.php)

    The correct hook to register widgets is elementor/widgets/widgets_registered – something like this:

    add_action( 'elementor/widgets/widgets_registered', function($widgets_manager){
    
        $widgets_manager->register_widget_type( new Ec_Elementor_Widget_Store() );
    
        if( !ecwid_is_demo_store() ) {
            $widgets_manager->register_widget_type( new Ec_Elementor_Widget_Buynow() );
        }
    });
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support ecwid_team

    (@ecwid_team)

    Hello! Ecwid team here.

    Thank you for your report regarding the Elementor integration. We are looking into that.

    If any questions about the Ecwid plugin arise, please feel free to reach out at [email protected]. We’d be glad to help you.

    Plugin Support ecwid_team

    (@ecwid_team)

    Hi there!

    Ecwid team here.

    We would like to notify you that the bug you reported was fixed by the plugin developers. Thank you very much for reporting this to us!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Elementor integration bug’ is closed to new replies.