• Resolved mickhele

    (@mickhele)


    SGO has a problem with the conversational forms generated by WP Fluent Forms.
    SGO block the CSS styles.
    The strange thing is that the issue is there only if the user is logged-out, instead if you are logged-in works well (load the CSS).
    The issue disappears if I disable “Combine CSS Files”.

    Can you verify or tell me how to exclude Fluent Forms CSS from CSS minification?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Elena Chavdarova

    (@elenachavdarova)

    Hello @mickhele,

    In case the file is not listed in Exclude from CSS Combination list, you can exclude the style handle using the following filter:

    add_filter( 'sgo_css_combine_exclude', 'css_combine_exclude' );
    function css_combine_exclude( $exclude_list ) {
        // Add the style handle to exclude list.
        $exclude_list[] = 'style-handle';
    
        return $exclude_list;
    }

    Make sure to replace the “style-handle” with the exact handle of the forms style which is causing this issue.

    Best Regards,
    Elena

    Thread Starter mickhele

    (@mickhele)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Issues with Conversational Forms by WP Fluent Forms’ is closed to new replies.