[Support request] Full list of dashicons in GP

Home Forums Support [Support request] Full list of dashicons in GP

Home Forums Support Full list of dashicons in GP

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1472827
    Junior Gong

    Hey guys

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

    #1472874
    David
    Staff
    Customer Support

    Hi there,

    you can see all the Dash Icons that WP installs here:

    https://developer.wordpress.org/resource/dashicons/

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

    #1472878
    Junior Gong

    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?

    #1473207
    David
    Staff
    Customer Support

    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/

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.