init(); } public function init() { add_action( 'elementor/widgets/register', array( $this, 'register_widgets' ) ); add_action( 'elementor/frontend/before_enqueue_scripts', array( $this, 'widget_scripts' ) ); // after_register_scripts before_enqueue_scripts conflct with short code add_action( 'elementor/frontend/after_enqueue_styles', array( $this, 'widget_styles' ) ); } public function widget_styles() { wp_register_style( 'ultp-style', ULTP_URL . 'assets/css/style.min.css', array(), ultimate_post()->get_setting( 'save_version' ) ); wp_enqueue_style( 'ultp-style' ); } public function widget_scripts() { wp_register_script( 'ultp-script', ULTP_URL . 'assets/js/ultp.min.js', array( 'jquery', 'wp-api-fetch' ), ultimate_post()->get_setting( 'save_version' ), true ); wp_enqueue_script( 'ultp-script' ); wp_localize_script( 'ultp-script', 'ultp_data_frontend', array( 'url' => ULTP_URL, 'active' => ultimate_post()->is_lc_active(), 'ultpSavedDLMode' => ultimate_post()->get_dl_mode(), 'ajax' => admin_url( 'admin-ajax.php' ), 'security' => wp_create_nonce( 'ultp-nonce' ), 'home_url' => home_url(), 'dark_logo' => get_option( 'ultp_site_dark_logo', false ), ) ); } public function includes() { require_once ULTP_PATH . 'addons/elementor/Elementor_Widget.php'; } public function register_widgets() { $this->includes(); \Elementor\Plugin::instance()->widgets_manager->register( new \Gutenberg_Post_Blocks_Widget() ); } }