Since the upgrade of Salient to 6.1.5 none of the icon fonts are working in the "Text with Icon" sections. I tried deleting and re-adding, to no avail... I also tried to roll back to a previous version of Salient and that failed completely.
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
Since the upgrade of Salient to 6.1.5 none of the icon fonts are working in the "Text with Icon" sections. I tried deleting and re-adding, to no avail... I also tried to roll back to a previous version of Salient and that failed completely.
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
Salient Support Team