Okay
  Public Ticket #406051
Menu Icons Not Missing
Closed

Comments

  •  1
    Alexander started the conversation

    edit title: Menu Items were missing / not displaying

    From one day to the other the menu icons went missing. Both the dropdown icon and the mobile menu icon.

    there was no change to the css and the search icon and content icons are showing up correctly.

  •  1
    Alexander replied

    got it. i installed another plugin that uses font-awesome. apparently the font-awesome you are using in your plugin is completely different to the official one. (when checking their github page)

    https://github.com/FortAwesome/Font-Awesome/blob/master/css/font-awesome.css

    in your file the classes are for example called icon-angle-down, in the official font awesome they are called fa-angle-down.

    Anything you guys can do about this in the next update? I dont always want to modify the plugin's css.

    the plugin was already installed for some time and it did work before, i guess something about the references changed.

  •  1,094
    ThemeNectar replied

    Hey! The latest Salient includes an updated font awesome with rules for the new fa- naming convention, if you're on a current release of the theme could you kindly allow me to log in so I can see this?

  •   Alexander replied privately
  •  1,094
    ThemeNectar replied

    Hey again - unfrotunately i'm getting a noticed that the provided password is not correct for that username. Could you verify the credentials you've provided are right?

  •   Alexander replied privately
  •  1
    Alexander replied

    i have deleted the user again as I dont want to leave a admin login open for too much time.

    took too long unfortunately. I will go with my workaround until the issue is eventually fixed.

  •  1
    Issen replied

    Alexander did you ever get your mobile issue resolved. Salient has been notorious with updates ruining fonts and buttons and we have updated so many times it's annoying. 

  •  9,028
    Tahir replied

    Hey Issen,

    The only issue that we have encountered with Icons being Missing is if a Plugin or Child Theme loads the FontAwesome Library thereby overriding the Theme FontAwesome Library .

    To Fix it try opening 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');

    Thanks


    ThemeNectar Support Team