'kit-elements-defaults', 'title' => __( 'Save as Default', 'elementor' ), 'description' => __( 'Maintain consistency across your site by saving the changes to a widget as the default setting for future use. These settings will automatically apply to the widget every time you place it. Note: This feature doesn\'t affect existing widgets.', 'elementor' ) . ' ' . __( 'Learn More', 'elementor' ) . '', 'release_status' => Experiments_Manager::RELEASE_STATUS_BETA, 'new_site' => [ 'default_active' => true, ], ]; } private function enqueue_scripts() { wp_enqueue_script( 'elementor-kit-elements-defaults-editor', $this->get_js_assets_url( 'kit-elements-defaults-editor' ), [ 'elementor-common', 'elementor-editor-modules', 'elementor-editor-document', ], ELEMENTOR_VERSION, true ); } public function __construct() { parent::__construct(); add_action( 'elementor/editor/before_enqueue_scripts', function () { $this->enqueue_scripts(); } ); Plugin::$instance->data_manager_v2->register_controller( new Controller() ); ( new Usage() )->register(); if ( is_admin() ) { ( new Import_Export() )->register(); } } }