Okay
  Public Ticket #608952
how to add custom icons on second header navigation
Closed

Comments

  • Diego started the conversation

    Hello I need to include image button icons on the second header navigations. Specifically, country flags. How can I do this. Thanks in advance for the response

  •  8,991
    Tahir replied

    Hey ,

    Try using this plugin: https://wordpress.org/plugins/menu-icons/ . If it causes a conflict , use this fix :


    Open your functions.php file and changing these items:

    wp_enqueue_style(\'font-awesome\');
    wp_register_style(\'font-awesome\', get_template_directory_uri() . \'/css/font-awesome.min.css\');
    to this:

    wp_enqueue_style(\'font-awesome-2\');
    wp_register_style(\'font-awesome-2\', get_template_directory_uri() . \'/css/font-awesome.min.css\');


    Best.


    ThemeNectar Support Team