Dear Iman Rahimi,
A, Please following the steps:
1. go to your_site\templates\sj_template\templateDetails.xml find:
<field name="googleWebFont" type="text" default="your_google_font" label="GOOGLE_WEBFONT_LABEL" description="GOOGLE_WEBFONT_DESC" />
=>
<field name="googleWebFont" type="text" default="" label="GOOGLE_WEBFONT_LABEL" description="GOOGLE_WEBFONT_DESC" />
2. go to Administrator -> Template Manager -> Typography -> Google Font-family -> remove font in text box . then click save.
B, or you can following how:
- go to your_site\templates\sj_template\includes\bottom.php and find:
if ($googleWebFont != "" && $googleWebFont != " " && strtolower($googleWebFont)!="none") {
$doc->addStyleSheet('http://fonts.googleapis.com/css?family='.str_replace(" ","+",$googleWebFont).'');
$googleWebFontFamily = strpos($googleWebFont, ':')?substr($googleWebFont, 0, strpos($googleWebFont, ':')):$googleWebFont;
if(trim($googleWebFontTargets)!="")
$doc->addStyleDeclaration(' '.$googleWebFontTargets.'{font-family:'.$googleWebFontFamily.', serif !important}');
}
=>
/*if ($googleWebFont != "" && $googleWebFont != " " && strtolower($googleWebFont)!="none") {
$doc->addStyleSheet('http://fonts.googleapis.com/css?family='.str_replace(" ","+",$googleWebFont).'');
$googleWebFontFamily = strpos($googleWebFont, ':')?substr($googleWebFont, 0, strpos($googleWebFont, ':')):$googleWebFont;
if(trim($googleWebFontTargets)!="")
$doc->addStyleDeclaration(' '.$googleWebFontTargets.'{font-family:'.$googleWebFontFamily.', serif !important}');
}*/
Thanks!