I can get other styling options to work, but not font changes of any kind. I have checked permissions of the enfold css file on my server, contacted Bluehost to see if I have any caching switched on, deleted all of my plugins, emptied my browser cache a million times but fonts don’t change anywhere on my site except in the styling preview window.
Now body font changes are working, but I cannot change fonts for headings.
Hi!
Thank you for using the theme. I hope you’re doing ok.
Can you please give us a link to the website? What heading font are you trying to use? Make sure that the dynamic_avia folder’s permission is writable.
Cheers!
Ismael
It is writable. No go. I have installed Easy Goggle fonts and have been able to override the heading font and gain control. I would like to avoid using this plugin if possible though….
Hi!
Please deactivate the plugin then use this filter instead if you want to add google fonts on Enfold > Styling > Heading font or Body font:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Oswald'] = 'Oswald';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Oswald'] = 'Oswald';
return $fonts;
}
There is no redirect code inside the theme for mobile devices. Maybe, a plugin is causing this. We don’t usually support third party plugins , so you might want to hire a freelance developer to configure the plugin.
Best regards,
Ismael