Changeset 2277147
- Timestamp:
- 04/06/2020 11:33:41 AM (6 years ago)
- Location:
- flo-forms/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
flo-forms.php (modified) (1 diff)
-
includes/class-flo-forms.php (modified) (1 diff)
-
public/class-flo-forms-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flo-forms/trunk/README.txt
r2265667 r2277147 4 4 Tags: contact form, contact form plugin, form, custom form builder, submission form, conditional logic 5 5 Requires at least: 5.0.0 6 Tested up to: 5. 47 Stable tag: 1.0.2 46 Tested up to: 5.3 7 Stable tag: 1.0.25 8 8 Author: Flothemes 9 9 Author URI: https://flothemes.com/ … … 51 51 52 52 == Changelog == 53 = 1.0.25 = 54 * FIX - fixed SG Optimizer plugin's CSS combine option conflict. 55 53 56 = 1.0.24 = 54 57 * Fix - Fixed reCaptcha error -
flo-forms/trunk/flo-forms.php
r2265667 r2277147 4 4 Plugin URI: https://flothemes.com/floforms 5 5 Description: A easy to use contact form builder plugin 6 Version: 1.0.2 46 Version: 1.0.25 7 7 Author: Flothemes 8 8 Author URI: https://flothemes.com -
flo-forms/trunk/includes/class-flo-forms.php
r2240918 r2277147 306 306 //$this->loader->add_action( 'flo_forms_before_send_mail', $plugin_public, 'maybe_store_user_meta' ); 307 307 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' ); 308 310 309 311 } -
flo-forms/trunk/public/class-flo-forms-public.php
r2265667 r2277147 1314 1314 1315 1315 } 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 } 1316 1329 } 1317 1330 }
Note: See TracChangeset
for help on using the changeset viewer.