Hi,
is it possible to configure JA Simply so I can use the template offline?
I found Google API links at 5 php files but if I disable them I can’t get a view of my site. 🙁
I think the problem is this:
/**
* Add custom style css
*/
public function addCustomStyle () {
$html = '';
$google_fonts = preg_split('/\n/', $this->getParam('styleGoogleFonts'));
foreach ($google_fonts as $font) {
$font = trim($font);
if(!$font) continue;
$html .= '<link href="https://fonts.googleapis.com/css?family=' . ($font) . '" rel="stylesheet" type="text/css" >' . "\n";
}
found in helper.php.
But I don’t have any idea to configure this to use local fonts.
Thanks a lot