Hi guys,
I noticed an error in my debug logs, please see below;
[17-Feb-2017 16:45:07 UTC] PHP Notice: Undefined index: in /home/FOLDER/public_html/example.co.uk/wp-content/themes/woopress/framework/theme-functions.php on line 547
This relates to this section within the themes-functions.php file below;
if( ! empty($google_font[0])) {
$font[] = "font-family: " . $gfonts[$google_font[0]['family']]['family'] . ";";
} else if ( ! empty( $value['font-family'] ) ) {
foreach ( et_recognized_font_families( '' ) as $key => $v ) {
if ( $key == $value['font-family'] ) {
$font[] = "font-family: " . $v . ";";
}
}
}
How can this be fixed please?
Thank you