Remove Dashicons

Posted in: Newspaper
Post count: 145

Salve,
Sito https://tenacemente.com/

Come posso rimuovere dashicons dal tema? Grazie

Post count: 27744

Hi,

Please provide more details about what you want to remove.

Thank you!

Post count: 145

Le icone di WordPress

Post count: 27744
Post count: 145

Ciao,

ho aggiunto a function.php, il foglio di stile dei dashicons, ma non è cambiato niente.

/** Remove Dashicons from Admin Bar for non logged in users **/
add_action(‘wp_print_styles’, ‘jltwp_adminify_remove_dashicons’, 100);

/** Remove Dashicons from Admin Bar for non logged in users **/
function jltwp_adminify_remove_dashicons()
{
if (!is_admin_bar_showing() && !is_customize_preview()) {
wp_dequeue_style(‘dashicons’);
wp_deregister_style(‘dashicons’);
}
}

Post count: 27744

Hi,

Please try to add this code in the theme’s functions.php function remove_dashicons() {
if (!is_admin()) {
wp_deregister_style('dashicons');
}
}
add_action('wp_enqueue_scripts', 'remove_dashicons');

Or try this https://wordpress.org/support/topic/dashicons-min-css-2/

Thank you!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.