Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #357287

    Hello. Font weights for headings in my stylesheet are not working since I did an Enfold update yesterday.
    When I’m logged in, font weights are 300, but switch to 400 when logged out.

    Any idea why this might be happening? Thanks.

    Not to complain too loudly, you guys offers pretty good support…but I’m concerned about my site breaking every time Enfold is updated. Enfold broke with the last WP update and I’ve had to apply several fixes after updating Enfold. Mostly fixes to the way enfold is applying styles. If these are changed with each Enfold update, anyone using the theme will spend hours chasing down bugs and fixing them every time they update the theme. Just my two cents.

    Not updating Enfold or WordPress is an option to ensure a stable experience, but not practical.

    #357861

    Tried everything in Enfold to fix the fact that Opens Sans 300 loads when logged in but not when logged out.

    Had to add the following manually to my child theme header before the closing </head> tag.

    <link rel=’stylesheet’ id=’open-sans-css’ href=’//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=4.0.1′ type=’text/css’ media=’all’ />

    Adding this fixed it of course, but wish it could have been done within Enfold.

    #357862

    Hey Tomzilla!

    Sorry about the problems your having. It looks like you have it set to 300.

    h1.main-title.entry-title, h1, h2, h3, p.tagline, .av-subheading {
        font-family: "Open Sans";
        font-weight: 300 !important;
    }
    .avia_textblock h2, .avia_codeblock h2 {
        font-weight: 300 !important;
    }

    Did you make sure to clear your browser cache and any caching related plugins? What happens when you deactivate all plugins?

    If your still having problems then send us a WordPress login and we’ll take a closer look.

    EDIT: It looks like you replied right before me. Go ahead and send us a login in a private reply and we’ll take a look.

    Cheers!
    Elliott

    • This reply was modified 9 years, 8 months ago by Elliott.
    #357940

    Hi Elliot. Thanks. You missed or didn’t read my last post ;-) I fixed this but please do read this. I see others are having similar problems.

    I cleared cache, disabled plugins. Tried resetting fonts in settings. I have no cache plugin.

    My “manual” fix below resolved the problem:

    I added: <link rel=’stylesheet’ id=’open-sans-css’ href=’//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=4.0.1′ type=’text/css’ media=’all’ /> to the child theme’s header.php

    FYI:
    Enfold was not loading open sans 300 in <head> when logged out. I could clearly see that it was not in source, so adding to my custom header worked, but this should not be necessary. This symptom began after I updated two days ago. Before that it was fine.

    This should be fixed in Enfold.

    Here is a user with similar problem:
    https://kriesi.at/support/topic/special-heading-thin-font-type-changes-to-helvetica-when-i-log-out-of-wp-admin/

    The fixes suggested in the thread (like adding a custom function) did nothing for me.

    Thanks anyway!

    #358172

    Hey!

    Glad you fixed it. You can also add this filter on functions.php right below line 16:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans 2'] = 'Open Sans:300italic,400italic,600italic,700italic,800italic,700,300,600,800,400'';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Open Sans 2'] = 'Open Sans:300italic,400italic,600italic,700italic,800italic,700,300,600,800,400'';
    return $fonts;
    }

    Select Open Sans 2 on Enfold > General Styling > Fonts panel.

    Regards,
    Ismael

    #358585

    Thanks Ismael. I’ll try this.

    I did try another version of function that was offered as a solution to another user but it did not work. Maybe this one will.

    Thanks again.

    #358739

    Hi!

    Please try and let us know so we can mark the thread as resolved or assist you further

    Cheers!
    Yigit

    #359121

    The function above didn’t work. As I said, I tried it before but thought it might be different.
    I’ll stay with the calling the stylesheet from head but if you guys figure out a fix for this, please let me know. Thanks!

    You also have extra (‘) marks at the end of two lines:

    $fonts[‘Open Sans 2’] = ‘Open Sans:300italic,400italic,600italic,700italic,800italic,700,300,600,800,400”;

    and

    $fonts[‘Open Sans 2’] = ‘Open Sans:300italic,400italic,600italic,700italic,800italic,700,300,600,800,400”;

    #360009

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    #363589

    @Tomzilla: Please read my post. It offers 2 function-based solutions to fix this issue:

    Solution #1 tells you step-by-step how to get @Josue’s function working (it works perfectly fine).
    Solution #2 is a function I wrote myself. It checks whether the line that disappears, after logging out of WP, is in the header. I mean the following line:

    <link rel=’stylesheet’ id=’open-sans-css’ href=’//fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C300%2C400%2C600&subset=latin%2Clatin-ext&ver=4.0.1′ type=’text/css’ media=’all’ />

    If the above line is not in the header (e.g. when you’re logged out of WP), then the function will add this line to your site’s header. Making your site’s logged in and logged out versions look exactly the same. And it’s no longer required to add this line manually to the (child) theme’s header, which is how you currently fixed the issue.

    Here’s my post explaining everything in detail: https://kriesi.at/support/topic/header-fonts-rendered-thicker-when-logged-out/#post-363534

    Hope this helps!

    Best,

    Ralph

    #364369

    Hi!


    @Tomzilla
    , please let us know if you still need help with this.

    Thanks for the help @Ralph12.

    Cheers!
    Josue

    #364589

    No problem, @Josue!

    Also, please read my latest post. The UPDATE part will clear everything up :)

    Kind regards,

    Ralph

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Font weight is 400 logged out but 300 when logged in (what I want)’ is closed to new replies.