SkyGhostAir team viewer varsa bağlanabilirim
Teşekkürler, bu kod sorunu çözecek gibi görünüyor olmazsa bağlanırsınız.
Şöyle bir kod helpers.php içerisinde buldum, silince "Site teknik bir sorun ile karşılaştı" yazıyor ancak altta bulunan "fonts.googleapis.com/css" kısmını silince adres şu hale (https://?family=%3A400&subset=latin&ver=1.9.5) geliyor. Yani bu kodlar ile ilgili bir sıkıntı olduğu belli, adres oluşturmasını siteyi bozmadan nasıl engellerim?
/**
* Generate fonts link
*
* Function creates font link from fonts selected in theme options
*
* @return string
* @since 1.0
*/
if ( !function_exists( 'gridlove_generate_fonts_link' ) ):
function gridlove_generate_fonts_link() {
$fonts = array();
$fonts[] = gridlove_get_option( 'main_font' );
$fonts[] = gridlove_get_option( 'h_font' );
$fonts[] = gridlove_get_option( 'nav_font' );
$unique = array(); //do not add same font links
$native = gridlove_get_native_fonts();
$protocol = is_ssl() ? 'https://' : 'http://';
$link = array();
foreach ( $fonts as $font ) {
if ( !in_array( $font['font-family'], $native ) ) {
$temp = array();
if ( isset( $font['font-style'] ) ) {
$temp['font-style'] = $font['font-style'];
}
if ( isset( $font['subsets'] ) ) {
$temp['subsets'] = $font['subsets'];
}
if ( isset( $font['font-weight'] ) ) {
$temp['font-weight'] = $font['font-weight'];
}
$unique[$font['font-family']][] = $temp;
}
}
$subsets = array( 'latin' ); //latin as default
foreach ( $unique as $family => $items ) {
$link[$family] = $family;
$weight = array( '400' );
foreach ( $items as $item ) {
//Check weight and style
if ( isset( $item['font-weight'] ) && !empty( $item['font-weight'] ) ) {
$temp = $item['font-weight'];
if ( isset( $item['font-style'] ) && empty( $item['font-style'] ) ) {
$temp .= $item['font-style'];
}
if ( !in_array( $temp, $weight ) ) {
$weight[] = $temp;
}
}
//Check subsets
if ( isset( $item['subsets'] ) && !empty( $item['subsets'] ) ) {
if ( !in_array( $item['subsets'], $subsets ) ) {
$subsets[] = $item['subsets'];
}
}
}
$link[$family] .= ':'.implode( ",", $weight );
//$link[$family] .= '&subset='.implode( ",", $subsets );
}
if ( !empty( $link ) ) {
$query_args = array(
'family' => urlencode( implode( '|', $link ) ),
'subset' => urlencode( implode( ',', $subsets ) )
);
$fonts_url = add_query_arg( $query_args, $protocol.'fonts.googleapis.com/css' );
return esc_url_raw( $fonts_url );
}
return '';
}
endif;