Site logo

Archived topic

Full list of dashicons in GP

3 replies · Started by Junior Gong on October 5, 2020

Viewing posts 1–4 of 4

Hey guys

I tried docs already. Is there anywhere a full list of all available dash- or svg icons that are loaded with GP?

GP only installs icons for the theme use – such as the Search Icon, Hamburger toggle, dropdown toggle etc.

so does that mean that by default I can use all dashicons in my theme? Or is there only a limited subset? If the latter, where can I find the list?

DashIcons are a separate thing to the theme icons. You can use any that are in that list that i provided.

You may find your site setup has Dash Icons disabled on the front end - if that the case you can enable them with this PHP Snippet:

add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' );
function load_dashicons_front_end() {
  wp_enqueue_style( 'dashicons' );
}

https://docs.generatepress.com/article/adding-php/

This archived topic is closed to new replies.