Version Description
- Fixed : Conflicts with default wp backbone script.
- Fixed : JS Conflicts in form editor in older versions of wordpress.
Download this release
Release Info
Developer | umarbajwa |
Plugin | Form Builder | Create Responsive Contact Forms |
Version | 1.8.5.2 |
Comparing to | |
See all releases |
Code changes from version 1.8.5.1 to 1.8.5.2
- admin/assets/js/entry/entry-manager.js +4 -1
- admin/core/class/class-smuzform-admin.php +17 -17
- admin/core/class/class-smuzform-entry-model.php +1 -1
- forms.php +2 -2
- readme.txt +21 -8
admin/assets/js/entry/entry-manager.js
CHANGED
@@ -7,7 +7,10 @@ $(document).ready(function() {
|
|
7 |
orderMulti: false,
|
8 |
processing: true,
|
9 |
serverSide: true,
|
10 |
-
ajax:
|
|
|
|
|
|
|
11 |
scrollX: true,
|
12 |
select: true,
|
13 |
bSort: false,
|
7 |
orderMulti: false,
|
8 |
processing: true,
|
9 |
serverSide: true,
|
10 |
+
ajax: {
|
11 |
+
url: ajaxurl+'?action=smuzform_entry_api&nonce='+smuzform.entry_model_nonce+'&formID='+smuzform.form_id,
|
12 |
+
method: 'POST'
|
13 |
+
},
|
14 |
scrollX: true,
|
15 |
select: true,
|
16 |
bSort: false,
|
admin/core/class/class-smuzform-admin.php
CHANGED
@@ -321,13 +321,13 @@ class SmuzForm_Admin {
|
|
321 |
$script_url = smuzform_admin_asset( 'js/script.js' );
|
322 |
|
323 |
|
324 |
-
wp_enqueue_script( 'smuzform-underscore', $underscore_url, array(),
|
325 |
|
326 |
-
wp_enqueue_script( 'smuzform-backbone', $backbone_url, array(),
|
327 |
|
328 |
-
wp_enqueue_script( 'smuzform-bootstrap', $bootstrap_js_url, array(),
|
329 |
|
330 |
-
wp_enqueue_script( 'smuzform-script', $script_url, array(),
|
331 |
|
332 |
$nonce_form_model = wp_create_nonce( 'smuzform_form_model' );
|
333 |
|
@@ -401,15 +401,15 @@ class SmuzForm_Admin {
|
|
401 |
$script_url = smuzform_admin_asset( 'js/entry/entry-manager.js' );
|
402 |
|
403 |
|
404 |
-
wp_enqueue_script( 'smuzform-underscore', $underscore_url, array(),
|
405 |
|
406 |
-
wp_enqueue_script( 'smuzform-backbone', $backbone_url, array(),
|
407 |
|
408 |
-
wp_enqueue_script( 'smuzform-bootstrap', $bootstrap_js_url, array(),
|
409 |
|
410 |
-
wp_enqueue_script( 'smuzform-entry-script', $script_url, array(),
|
411 |
|
412 |
-
wp_enqueue_script( 'smuzform-datatables-script', $datatable_script_url, array(),
|
413 |
|
414 |
$nonce_entry_model = wp_create_nonce( 'smuzform_entry_model' );
|
415 |
|
@@ -483,13 +483,13 @@ class SmuzForm_Admin {
|
|
483 |
$script_url = smuzform_admin_asset( 'js/notification/notification-manager.js' );
|
484 |
|
485 |
|
486 |
-
wp_enqueue_script( 'smuzform-underscore', $underscore_url, array(),
|
487 |
|
488 |
-
wp_enqueue_script( 'smuzform-backbone', $backbone_url, array(),
|
489 |
|
490 |
-
wp_enqueue_script( 'smuzform-bootstrap', $bootstrap_js_url, array(),
|
491 |
|
492 |
-
wp_enqueue_script( 'smuzform-notification-script', $script_url, array(),
|
493 |
|
494 |
$nonce_notification_model = wp_create_nonce( 'smuzform_notification_model' );
|
495 |
|
@@ -566,13 +566,13 @@ class SmuzForm_Admin {
|
|
566 |
$script_url = smuzform_admin_asset( 'js/style/style-manager.js' );
|
567 |
|
568 |
|
569 |
-
wp_enqueue_script( 'smuzform-underscore', $underscore_url, array(),
|
570 |
|
571 |
-
wp_enqueue_script( 'smuzform-backbone', $backbone_url, array(),
|
572 |
|
573 |
-
wp_enqueue_script( 'smuzform-bootstrap', $bootstrap_js_url, array(),
|
574 |
|
575 |
-
wp_enqueue_script( 'smuzform-style-script', $script_url, array( 'wp-color-picker' ),
|
576 |
|
577 |
$nonce_style_model = wp_create_nonce( 'smuzform_style_model' );
|
578 |
|
321 |
$script_url = smuzform_admin_asset( 'js/script.js' );
|
322 |
|
323 |
|
324 |
+
wp_enqueue_script( 'smuzform-underscore', $underscore_url, array(), false, true );
|
325 |
|
326 |
+
wp_enqueue_script( 'smuzform-backbone', $backbone_url, array('backbone'), false, true );
|
327 |
|
328 |
+
wp_enqueue_script( 'smuzform-bootstrap', $bootstrap_js_url, array(), false, true );
|
329 |
|
330 |
+
wp_enqueue_script( 'smuzform-script', $script_url, array('smuzform-backbone'), false, true );
|
331 |
|
332 |
$nonce_form_model = wp_create_nonce( 'smuzform_form_model' );
|
333 |
|
401 |
$script_url = smuzform_admin_asset( 'js/entry/entry-manager.js' );
|
402 |
|
403 |
|
404 |
+
wp_enqueue_script( 'smuzform-underscore', $underscore_url, array(), false, true );
|
405 |
|
406 |
+
wp_enqueue_script( 'smuzform-backbone', $backbone_url, array('backbone'), false, true );
|
407 |
|
408 |
+
wp_enqueue_script( 'smuzform-bootstrap', $bootstrap_js_url, array(), false, true );
|
409 |
|
410 |
+
wp_enqueue_script( 'smuzform-entry-script', $script_url, array(), false, true );
|
411 |
|
412 |
+
wp_enqueue_script( 'smuzform-datatables-script', $datatable_script_url, array(), false, true );
|
413 |
|
414 |
$nonce_entry_model = wp_create_nonce( 'smuzform_entry_model' );
|
415 |
|
483 |
$script_url = smuzform_admin_asset( 'js/notification/notification-manager.js' );
|
484 |
|
485 |
|
486 |
+
wp_enqueue_script( 'smuzform-underscore', $underscore_url, array(), false, true );
|
487 |
|
488 |
+
wp_enqueue_script( 'smuzform-backbone', $backbone_url, array('backbone'), false, true );
|
489 |
|
490 |
+
wp_enqueue_script( 'smuzform-bootstrap', $bootstrap_js_url, array(), false, true );
|
491 |
|
492 |
+
wp_enqueue_script( 'smuzform-notification-script', $script_url, array(), false, true );
|
493 |
|
494 |
$nonce_notification_model = wp_create_nonce( 'smuzform_notification_model' );
|
495 |
|
566 |
$script_url = smuzform_admin_asset( 'js/style/style-manager.js' );
|
567 |
|
568 |
|
569 |
+
wp_enqueue_script( 'smuzform-underscore', $underscore_url, array(), false, true );
|
570 |
|
571 |
+
wp_enqueue_script( 'smuzform-backbone', $backbone_url, array('backbone'), false, true );
|
572 |
|
573 |
+
wp_enqueue_script( 'smuzform-bootstrap', $bootstrap_js_url, array(), false, true );
|
574 |
|
575 |
+
wp_enqueue_script( 'smuzform-style-script', $script_url, array( 'wp-color-picker' ), false, true );
|
576 |
|
577 |
$nonce_style_model = wp_create_nonce( 'smuzform_style_model' );
|
578 |
|
admin/core/class/class-smuzform-entry-model.php
CHANGED
@@ -24,7 +24,7 @@ class SmuzForm_Entry_Model {
|
|
24 |
$this->get();
|
25 |
|
26 |
if ( $_SERVER['REQUEST_METHOD'] == 'POST' )
|
27 |
-
$this->
|
28 |
|
29 |
if ( $_SERVER['REQUEST_METHOD'] == 'PUT' )
|
30 |
$this->save();
|
24 |
$this->get();
|
25 |
|
26 |
if ( $_SERVER['REQUEST_METHOD'] == 'POST' )
|
27 |
+
$this->get();
|
28 |
|
29 |
if ( $_SERVER['REQUEST_METHOD'] == 'PUT' )
|
30 |
$this->save();
|
forms.php
CHANGED
@@ -5,7 +5,7 @@ Description: Create Resposnive Forms using Drag & Drop Visual Builder.
|
|
5 |
Author: Web-Settler
|
6 |
Author URI: http://web-settler.com/form-builder/
|
7 |
Plugin URI: http://web-settler.com/form-builder/
|
8 |
-
Version: 1.8.5.
|
9 |
License: GPL V2+
|
10 |
**/
|
11 |
|
@@ -92,7 +92,7 @@ function smuzform_redirect_entrypage_option() {
|
|
92 |
$cf_wb_forms_uninstall_feedbak_form = new CF_WB_Admin_feedback_class();
|
93 |
|
94 |
function cfwb_plugin_add_settings_link( $links ) {
|
95 |
-
$settings_link = '<a href="
|
96 |
$support_link = '<a href="http://web-settler.com/ulp-support/">' . __( 'Support' ) . '</a>';
|
97 |
$links['deactivate'] = str_replace( '<a', '<a id="msfcf-plugin-deactivate-link"', $links['deactivate'] );
|
98 |
array_push( $links, $settings_link );
|
5 |
Author: Web-Settler
|
6 |
Author URI: http://web-settler.com/form-builder/
|
7 |
Plugin URI: http://web-settler.com/form-builder/
|
8 |
+
Version: Version: 1.8.5.2
|
9 |
License: GPL V2+
|
10 |
**/
|
11 |
|
92 |
$cf_wb_forms_uninstall_feedbak_form = new CF_WB_Admin_feedback_class();
|
93 |
|
94 |
function cfwb_plugin_add_settings_link( $links ) {
|
95 |
+
$settings_link = '<a href="admin.php?page=smuz-forms-main">' . __( 'Dashboard' ) . '</a>';
|
96 |
$support_link = '<a href="http://web-settler.com/ulp-support/">' . __( 'Support' ) . '</a>';
|
97 |
$links['deactivate'] = str_replace( '<a', '<a id="msfcf-plugin-deactivate-link"', $links['deactivate'] );
|
98 |
array_push( $links, $settings_link );
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: umarbajwa
|
|
3 |
Requires at least: 3.7
|
4 |
Tested up to: 4.9
|
5 |
Tags: contact form, form builder, contact me, custom contact form, form, custom formss
|
6 |
-
Stable tag: 1.8.5.
|
7 |
Donate Link: http://web-settler.com/form-builder/
|
8 |
License: GPL V2 or latest
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
@@ -250,6 +250,11 @@ A: Yes, You can edit your Form entries from entry manager.
|
|
250 |
|
251 |
== Changelog ==
|
252 |
|
|
|
|
|
|
|
|
|
|
|
253 |
= 1.8.5 =
|
254 |
|
255 |
* Performance Improvement
|
@@ -291,23 +296,31 @@ Contact form plugin give you the ability to apply conditional logic for your not
|
|
291 |
|
292 |
== Upgrade Notice ==
|
293 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
= 1.8 =
|
295 |
|
296 |
* Added drag and drop in contact form editing panel.
|
297 |
* Bug Fixes.
|
298 |
|
299 |
-
= 1.
|
300 |
-
|
301 |
-
* Contact form Notification email bug fixed
|
302 |
|
|
|
303 |
|
304 |
|
305 |
= 1.2 =
|
306 |
-
*
|
307 |
* Plugin core changes.
|
308 |
* AddOn added.
|
309 |
|
310 |
-
= 1.0.1 =
|
311 |
-
* Name field changes.
|
312 |
|
313 |
-
|
|
3 |
Requires at least: 3.7
|
4 |
Tested up to: 4.9
|
5 |
Tags: contact form, form builder, contact me, custom contact form, form, custom formss
|
6 |
+
Stable tag: 1.8.5.2
|
7 |
Donate Link: http://web-settler.com/form-builder/
|
8 |
License: GPL V2 or latest
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
250 |
|
251 |
== Changelog ==
|
252 |
|
253 |
+
= 1.8.5.2 =
|
254 |
+
|
255 |
+
* Fixed : Conflicts with default wp backbone script.
|
256 |
+
* Fixed : JS Conflicts in form editor in older versions of wordpress.
|
257 |
+
|
258 |
= 1.8.5 =
|
259 |
|
260 |
* Performance Improvement
|
296 |
|
297 |
== Upgrade Notice ==
|
298 |
|
299 |
+
= 1.8.5.2 =
|
300 |
+
|
301 |
+
* Fixed : Conflicts with default wp backbone script.
|
302 |
+
* Fixed : JS Conflicts in form editor in older versions of wordpress.
|
303 |
+
|
304 |
+
= 1.8.5 =
|
305 |
+
|
306 |
+
* Performance Improvement
|
307 |
+
* Minor Fixes.
|
308 |
+
|
309 |
= 1.8 =
|
310 |
|
311 |
* Added drag and drop in contact form editing panel.
|
312 |
* Bug Fixes.
|
313 |
|
314 |
+
= 1.5 =
|
|
|
|
|
315 |
|
316 |
+
* Notification email fixed
|
317 |
|
318 |
|
319 |
= 1.2 =
|
320 |
+
* Form Styler loaded with new features.
|
321 |
* Plugin core changes.
|
322 |
* AddOn added.
|
323 |
|
|
|
|
|
324 |
|
325 |
+
= 1.0.1 =
|
326 |
+
* Name field changes.
|