Hallo! Thanks for the nice theme. I have a problem concerning Font Awesome: I switched to the WPBakery Visual Composer because I need frontend editing. The only thing is that the fontawesome icons aren'T working anymore, especially for the mobile menu. Even if I change
<i class="icon-reorder"></i>
to
<i class="fa-reorder"></i>
it won't show up. Can you help me to resolve the fontawesome issue in general and especially the issue with the mobile menu icon?
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\');
Also, if you’re using page transitions, change the method to the standard option form the “AJAX” one
Hallo! Thanks for the nice theme. I have a problem concerning Font Awesome: I switched to the WPBakery Visual Composer because I need frontend editing. The only thing is that the fontawesome icons aren'T working anymore, especially for the mobile menu. Even if I change
to
it won't show up. Can you help me to resolve the fontawesome issue in general and especially the issue with the mobile menu icon?
Thanks!
Hey,
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\');
Also, if you’re using page transitions, change the method to the standard option form the “AJAX” one
Cheers
ThemeNectar Support Team