Hi,
I have been tryonh to add google fonts to appear in the drop menu. I tried to add a code to the function.php as per pne of your posts but didn’t
I aded the below.
add_filter( ‘avf_google_heading_font’, ‘avia_add_heading_font’);
function avia_add_heading_font($fonts)
{
$fonts[‘Abel’] = ‘Abel:300,600’;
$fonts[‘Other-font’] = ‘Other-font:300,600’;
return $fonts;
}
Please advise.
Thanks
Eman
add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
function avia_add_content_font($fonts)
{
$fonts[‘Abel’] = ‘Abel:300,600’;
$fonts[‘Other-font’] = ‘Other-font:300,600’;
return $fonts;
}