Remove the Theme Icons CSS File
Important
The theme uses SVG icons by default now and there is no longer any theme font icons loaded.
By default the Total theme includes a built-in theme icons set which gets loaded via it's own CSS file so if you wish to remove it you can! Below is a snippet you can use to remove the built-in icon font CSS.
/**
* Remove the theme icons CSS file.
*
* @link https://totalwptheme.com/docs/snippets/remove-ticons-css/
*/
add_action( 'wp_enqueue_scripts', function() {
wp_deregister_style( 'ticons' );
wp_dequeue_style( 'ticons' );
}, 99 );All PHP snippets should be added via child theme's functions.php file or via a plugin.
We recommend Code Snippets (100% Free) or WPCode (sponsored)
We recommend Code Snippets (100% Free) or WPCode (sponsored)
Related Snippets