Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Can't upgrade the theme on any of my sites #1030610

    same problem for us. 2 Enfold sites. Hosting with MediaTemple in the US (shared WordPress hosting). Update via FTP is not an option unfortunately. Please advice.

    in reply to: H1 – Google Fonts Roboto Slab #862154

    cool! that worked. thank you

    in reply to: H1 – Google Fonts Roboto Slab #862143

    I added the child theme, but Roboto Slab is not rendering? got any tips for me?

    <?php
    
    if(isset($avia_config['use_child_theme_functions_only'])) return;
    
    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Roboto Slab'] = 'Roboto+Slab:100,300,400,700';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    
    $fonts['Roboto Slab'] = 'Roboto+Slab:100,300,400,700';
    return $fonts;
    }
    
Viewing 3 posts - 1 through 3 (of 3 total)