70, 'width' => 350, 'flex-height' => true, 'flex-width' => true, ) ); add_theme_support( 'woocommerce' ); load_theme_textdomain( 'elementor-hello-theme', get_template_directory() . '/languages' ); } add_action( 'after_setup_theme', 'elementor_hello_theme_setup' ); // Theme Scripts & Styles function elementor_hello_theme_scripts_styles() { wp_enqueue_style( 'elementor-hello-theme-style', get_stylesheet_uri() ); } add_action( 'wp_enqueue_scripts', 'elementor_hello_theme_scripts_styles' ); // Register Elementor Locations ////////////////////// ///////////////////// function elementor_hello_theme_register_elementor_locations( $elementor_theme_manager ) { $elementor_theme_manager->register_all_core_location(); }; add_action( 'elementor/theme/register_locations', 'elementor_hello_theme_register_elementor_locations' ); // Remove WP Embed function elementor_hello_theme_deregister_scripts() { wp_deregister_script( 'wp-embed' ); } add_action( 'wp_footer', 'elementor_hello_theme_deregister_scripts' ); // Remove WP Emoji //////////////////////// //////////////////////// //////////////////////// remove_action( 'wp_head', 'print_emoji_detection_script', 7 ); remove_action( 'wp_print_styles', 'print_emoji_styles' ); remove_action( 'admin_print_scripts', 'print_emoji_detection_script' ); remove_action( 'admin_print_styles', 'print_emoji_styles' );