Plugin Directory

Changeset 2277147


Ignore:
Timestamp:
04/06/2020 11:33:41 AM (6 years ago)
Author:
flothemesplugins
Message:

v 1.0.25

Location:
flo-forms/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • flo-forms/trunk/README.txt

    r2265667 r2277147  
    44Tags: contact form, contact form plugin, form, custom form builder, submission form, conditional logic
    55Requires at least: 5.0.0
    6 Tested up to: 5.4
    7 Stable tag: 1.0.24
     6Tested up to: 5.3
     7Stable tag: 1.0.25
    88Author: Flothemes
    99Author URI: https://flothemes.com/
     
    5151
    5252== Changelog ==
     53= 1.0.25 =
     54*  FIX - fixed SG Optimizer plugin's CSS combine option conflict.
     55
    5356= 1.0.24 =
    5457* Fix - Fixed reCaptcha error
  • flo-forms/trunk/flo-forms.php

    r2265667 r2277147  
    44Plugin URI:        https://flothemes.com/floforms
    55Description:       A easy to use contact form builder plugin
    6 Version:           1.0.24
     6Version:           1.0.25
    77Author:            Flothemes
    88Author URI:        https://flothemes.com
  • flo-forms/trunk/includes/class-flo-forms.php

    r2240918 r2277147  
    306306      //$this->loader->add_action( 'flo_forms_before_send_mail', $plugin_public, 'maybe_store_user_meta' );
    307307
     308            // FIX for SG Optimizer plugin CSS cobine option conflict:
     309            $this->loader->add_filter( 'sgo_css_combine_exclude', $plugin_public, 'siteground_css_combine_exclude' );
    308310
    309311        }
  • flo-forms/trunk/public/class-flo-forms-public.php

    r2265667 r2277147  
    13141314
    13151315    }
     1316
     1317        /**
     1318         * triggered by sgo_css_combine_exclude.
     1319         * is meant to fix the css files combination issue caused by SG optimizer plugin
     1320         * It excludes the front end css files from combination
     1321         */
     1322        public function siteground_css_combine_exclude( $exclude_list ) {
     1323            // Add the style handle to exclude list.
     1324            $exclude_list[] = 'flo-forms-public';
     1325            //$exclude_list[] = 'flo-forms-pikaday';
     1326
     1327            return $exclude_list;
     1328        }
    13161329    }
    13171330}
Note: See TracChangeset for help on using the changeset viewer.