Deregisters The Default Elementor Icons

Deregisters the default Elementor icons stylesheet to reduce bloat.

PHP
/**
 * Snippet Name:     Deregisters the default Elementor icons
 * Snippet Author:   coding-bunny.com
 * Description:      Deregisters the default Elementor icons stylesheet to reduce bloat.
 */

if ( defined( 'ELEMENTOR_VERSION' ) ) {
    add_action( 'wp_enqueue_scripts', 'cb_remove_default_styles', 100 );

    /**
     * Deregisters the default Elementor icons stylesheet.
     */
    function cb_remove_default_styles() {
        wp_deregister_style( 'elementor-icons' );
    }
}

How To Implement This Solution?

Leave a Reply

Your email address will not be published. Required fields are marked *

My Agile Privacy
This site uses technical and profiling cookies. You can accept, decline or customize cookies by pressing the desired buttons. By closing this policy you will continue without accepting.

Need help?

Choose one of the following options:

Powered by CodingBunny