Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1786064
Missing Icons
Closed

Comments

  • dsl-ms started the conversation

    Hello, the materialdesign & elegant icon pack is not displaying the icons correctly. Could you let me know how to fix please so I can use the icons?


  •  7,095
    Oliver replied

    Hi,pls. add this code to the functions.php of the child theme:

    function thegem_child_scripts_new() {
    wp_register_style('icons-elegant', get_template_directory_uri() . '/css/icons-elegant.css');
    wp_enqueue_style('icons-elegant');
    wp_register_style('icons-fontawesome', get_template_directory_uri() . '/css/icons-fontawesome.css');
    wp_enqueue_style('icons-fontawesome');
    wp_register_style('icons-material', get_template_directory_uri() . '/css/icons-material.css');
    wp_enqueue_style('icons-material');
    }
    add_action( 'init', 'thegem_child_scripts_new' );

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  • dsl-ms replied

    That's great, thanks Gregor

  •  7,095
    Oliver replied

    Welcome!

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver