PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.19
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.19
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
← All changes | classes/controllers/FrmStylesController.php +6 -3 6.256.19 View file →
@@ -123,8 +123,9 @@
123 123 FrmStyleComponent::register_assets();
124 124 self::load_pro_hooks();
125 125
126 126 $version = FrmAppHelper::plugin_version();
127 + wp_enqueue_script( 'jquery-ui-datepicker' );
127 128
128 129 if ( FrmAppHelper::is_style_editor_page( 'edit' ) ) {
129 130 wp_enqueue_style( 'wp-color-picker' );
130 131 }
@@ -539,9 +540,9 @@
539 540 $plugin_url = FrmAppHelper::plugin_url();
540 541 $version = FrmAppHelper::plugin_version();
541 542 $js_dependencies = array( 'wp-i18n', 'wp-hooks', 'formidable_dom' );
542 543
543 - if ( FrmAppHelper::pro_is_installed() && is_callable( 'FrmProAppHelper::use_jquery_datepicker' ) && FrmProAppHelper::use_jquery_datepicker() ) {
544 + if ( FrmAppHelper::pro_is_installed() ) {
544 545 $js_dependencies[] = 'jquery-ui-datepicker';
545 546 }
546 547
547 548 wp_register_script( 'formidable_style', $plugin_url . '/js/admin/style.js', $js_dependencies, $version );
@@ -1264,13 +1265,15 @@
1264 1265 ?>
1265 1266 <li class="control-section accordion-section <?php echo esc_attr( $open_class ); ?> <?php echo esc_attr( $box['id'] ); ?>" id="<?php echo esc_attr( $box['id'] ); ?>">
1266 1267 <h3 class="accordion-section-title hndle">
1267 1268 <?php
1268 - FrmAppHelper::icon_by_class( 'frmfont ' . $icon_id . ' frm_svg24' );
1269 + FrmAppHelper::icon_by_class( 'frmfont ' . $icon_id );
1269 1270 echo esc_html( $box['title'] );
1270 1271 ?>
1271 1272 <button type="button" aria-expanded="<?php echo esc_attr( 'open' === $open_class ? 'true' : 'false' ); ?>" aria-controls="<?php echo esc_attr( $accordion_content_id ); ?>" aria-label="<?php echo esc_attr( $box['title'] ); ?>">
1272 - <?php FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown8_icon' ); ?>
1273 + <?php
1274 + FrmAppHelper::icon_by_class( 'frmfont frm_arrowdown8_icon' );
1275 + ?>
1273 1276 </button>
1274 1277 </h3>
1275 1278 <div class="accordion-section-content <?php postbox_classes( $box['id'], $page ); ?>" id="<?php echo esc_attr( $accordion_content_id ); ?>">
1276 1279 <div class="inside">