Hi There,
We are having a white screen on the page we selected being the Blog, when we are using the following code to add our own Google Webfont in Child Theme:
add_theme_support('avia_template_builder_custom_css');
add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
function avia_add_heading_font($fonts)
{
$fonts['Source Sans Pro'] = 'Source+Sans+Pro:400,300,700';
return $fonts;
}
add_filter( 'avf_google_content_font', 'avia_add_content_font');
function avia_add_content_font($fonts)
{
$fonts['Source Sans Pro'] = 'Source+Sans+Pro:400,300,700';
return $fonts;
}
The website is part of a multisite.
What can we do?
many Thanks, T.
Hey elbnetz,
Please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.
Best regards,
Rikard
Thanks for your reply.
We avoided the problem by using a normal page with a blog listing short code, not declaring a blog page.
Thanks!