
Originally Posted by
Nick1973
Anybody know why I can't select five stars on this page?
And also why the stars are boxes?
Your fontawesome 5 is not loaded correctly and this mod was not upgraded to 5 yet.. If you load FontAwesome 5 kit with version 4 enabled the stars would show.
I use the kit and local/backup install as
Code:
<script src="https://kit.fontawesome.com/YOUR_KIT_ID.js" crossorigin="anonymous"></script>
<script type="text/javascript">
(function($){
var $span = $('<span class="fas" style="display:none"></span>').appendTo('body');
if ($span.css('font-family') !== 'Font Awesome 5 Free' ) {
// Fallback Link
$('head').append(<?php echo '\'<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . 'font-awesome.css' . '" />\''; ?>);
$('head').append(<?php echo '\'<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . 'all.css' . '" />\''; ?>);
}
$span.remove();
})(jQuery);
</script>
I was working on a how-to but not posted yet..
Bookmarks