• Resolved generosus

    (@generosus)


    Unfortunately, your plugin is not compatible with WP 6.4.1.

    Upon upgrading to WP 6.4.1, we noticed that the fonts we selected for our login page (Open Sans) are overriden by the font group contained in WP 6.4.1 (-apple-system,BlinkMacSystemFont,”Segoe UI”,Roboto,Oxygen-Sans,Ubuntu,Cantarell,”Helvetica Neue”,sans-serif)

    Details (WP 6.3.2, Plugin Fonts, Open Sans, Looks Good):
    https://prnt.sc/c_3briFB1Azy

    Details (WP 6.4.1, WP Fonts, Looks Bad):
    https://prnt.sc/BJXCMHn-vHWp

    We performed a plugin conflict test, cleared our cache, and tried to override WP’s fonts with CSS rules, but nothing worked.

    Kindly recheck your plugin and provide a fix for this font issue.

    Also, your plugin’s backend UI needs a refresh. It’s too flashy and no longer conforms to expected WP styling standards.

    Thank you!

Viewing 1 replies (of 1 total)
  • Thread Starter generosus

    (@generosus)

    Update:

    After a long and interesting battle, we learned the issue was caused by the plugin, Speed Optimizer.

    To fix the issue, the following code snippet was added to our functions.php file:

    add_filter( 'sgo_javascript_combine_excluded_external_paths', 'js_combine_exclude_external_script_google_fonts' );
    function js_combine_exclude_external_script_google_fonts ( $exclude_list ) {
    $exclude_list[] = 'ajax.googleapis.com';
    return $exclude_list;
    }

    Note: We can still use your help in simplifying the backend of your plugin. Too flashy.

    Cheers ??

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin No Longer Supported | Not Compatible With WP 6.4.1’ is closed to new replies.