• Resolved Generosus

    (@generosus)


    Good Day!

    We just noticed your plugin’s settings for Google Font Styles are not working. After selecting, for example, “Open Sans” the font is not being applied to our login pages.

    Details:

    https://ibb.co/v1X3ngB
    https://ibb.co/2hWfnhk

    Using custom CSS (as noted below) does not work either due to your plugin’s latest code.

    font-family: Open Sans!important;

    Kindly review and provide a fix.

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Generosus

    (@generosus)

    Update:

    We tested past versions of your plugin. The last version of your plugin that loads Google font styles properly is V3.2.2.

    Another plugin user expressed the same issue over a year ago in this support forum topic.

    Most likely, issue caused by the changes you made to your bootstrap library.

    Kindly provide a fix for all wp-login.php pages that your plugin is affecting.

    Thank you!

    Plugin Author weblizar

    (@weblizar)

    Hi generosus

    We have fixed that issue in latest version. Please download the latest version and upload in your site.

    It think your issue is resolved.

    Thanks

    Thread Starter Generosus

    (@generosus)

    @weblizar,

    Thank you for your quick response. Yes, it was fixed with V3.3.4.

    Also, we just confirmed that part of our issue was also caused by the plugin, SG Optimizer. Specifically, when we activated the following plugin setting:

    SG Optimizer > Frontend > Javascript > Defer Render-Blocking Javascript

    To fix the above, we used the following code snippet: (added to our functions.php file)

    <?php
    add_filter( 'sgo_js_async_exclude', 'js_async_exclude_acl' );
    function js_async_exclude_acl( $exclude_list ) {
    	$exclude_list[] = 'wl-acl-font-config';
    
       return $exclude_list;
    }

    Hope this helps as well.

    Thank you!

    Plugin Author weblizar

    (@weblizar)

    Hi generosus

    We can update the very soon.

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Google Font Styles Not Working’ is closed to new replies.