Hello,
It looks like this extension requires payment. Is that true or am I missing something obvious? I'm only looking to use font awesome icons.
Hello,
It looks like this extension requires payment. Is that true or am I missing something obvious? I'm only looking to use font awesome icons.
I solved by adding these lines of code into LocalSettings.php :)
$wgHooks['BeforePageDisplay'][] ='onBeforePageDisplay';
function onBeforePageDisplay( OutputPage &$out, Skin &$skin )
{
$script = '<script type="text/javascript" src="https://use.fontawesome.com/fa18954d69.js"></script>';
$out->addHeadItem("wowhead script", $script);
return true;
};
I just added this line to the beginning of Common.css : @import "https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css";
Works like a charm...
Two years later those lines of code saved my ass in LocalSettings.php.
Thank you, whoever was behind 88.44.229.42 at that time.