Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Buttonizer

    (@buttonizer)

    Hi @depremz ,

    Thanks for your support question!

    Does your site perhaps have SG Optimizer or any other caching plugins?
    It seems that the css file of Buttonizer isn’t being loaded in.

    If it does have SG Optimizer, you can perhaps disable “Minify CSS Files” to make Buttonizer show up.

    Thread Starter depremz

    (@depremz)

    Yes it does. Thank you. It′s disabled but doesn′t seem to work. Still not showing.

    Thread Starter depremz

    (@depremz)

    It′s working now. But I had to disabled the SG plugin entirely. Would there be any other recommendations or fixes for this?
    Thank you very much.

    Plugin Author Buttonizer

    (@buttonizer)

    On SG Optimizer’s WordPress page, they have a function to exclude a css file from being minified.

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

    Could you try adding this into your functions.php and see if it will exclude the CSS file of Buttonizer?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Floating Button not showing on mobile site’ is closed to new replies.