WP Custom Widget area - Version 1.2.2

Version Description

  • Widget area bug fix for tag less code display on frontend. support ticket : widget-title-showing-in-code-form
Download this release

Release Info

Developer krozero199
Plugin Icon wp plugin WP Custom Widget area
Version 1.2.2
Comparing to
See all releases

Code changes from version 1.2.1 to 1.2.2

README.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: krozero
3
  Tags: widget area, custom widget area, widget, simple widget area, custom sidebar, dynamic sidebar, menu, menus, custom menu, custom menu locations, menu location, menu area
4
  Requires at least: 3.0.1
5
- Tested up to: 4.3.1
6
- Stable tag: 1.2.1
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
@@ -77,6 +77,9 @@ It allows you to show custom widget areas and menu locations created with this p
77
 
78
  == Changelog ==
79
 
 
 
 
80
  = 1.2.1 =
81
  * Widget area edit form bug fix
82
 
@@ -126,6 +129,9 @@ It allows you to show custom widget areas and menu locations created with this p
126
 
127
  == Upgrade Notice ==
128
 
 
 
 
129
  = 1.2.1 =
130
  * Widget area edit form bug fix
131
 
2
  Contributors: krozero
3
  Tags: widget area, custom widget area, widget, simple widget area, custom sidebar, dynamic sidebar, menu, menus, custom menu, custom menu locations, menu location, menu area
4
  Requires at least: 3.0.1
5
+ Tested up to: 4.5
6
+ Stable tag: 1.2.2
7
  License: GPLv2 or later
8
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
9
 
77
 
78
  == Changelog ==
79
 
80
+ = 1.2.2 =
81
+ * Widget area bug fix for tag less code display on frontend. support ticket : widget-title-showing-in-code-form
82
+
83
  = 1.2.1 =
84
  * Widget area edit form bug fix
85
 
129
 
130
  == Upgrade Notice ==
131
 
132
+ = 1.2.2 =
133
+ * Widget area bug fix for tag less code display on frontend. support ticket : widget-title-showing-in-code-form
134
+
135
  = 1.2.1 =
136
  * Widget area edit form bug fix
137
 
admin/js/wp-custom-widget-area-admin.js CHANGED
@@ -237,7 +237,7 @@
237
  function resetForm(){
238
  $('.cwa-form input[type="hidden"]' ).val('');
239
  $('.cwa-form input[disabled]' ).prop('disabled', false);
240
- $('.cwa-form select' ).val('');
241
  $('.cwa-form input[type="text"]' ).val('');
242
  $('.cwa-form input[type="submit"]' ).val('Create');
243
  $('.cwa-form .cwa-form-message' ).empty();
237
  function resetForm(){
238
  $('.cwa-form input[type="hidden"]' ).val('');
239
  $('.cwa-form input[disabled]' ).prop('disabled', false);
240
+ $('.cwa-form select' ).children(':first-child').prop('selected', true);
241
  $('.cwa-form input[type="text"]' ).val('');
242
  $('.cwa-form input[type="submit"]' ).val('Create');
243
  $('.cwa-form .cwa-form-message' ).empty();
includes/config.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*plugin configs*/
3
  global $wpdb;
4
- $kz_db_version = '1.2.1';
5
  $table_name = $wpdb->prefix . 'cwa';
6
  $charset_collate = '';
7
  ?>
1
  <?php
2
  /*plugin configs*/
3
  global $wpdb;
4
+ $kz_db_version = '1.2.2';
5
  $table_name = $wpdb->prefix . 'cwa';
6
  $charset_collate = '';
7
  ?>
wp-custom-widget-area.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: WP Custom Widget area
17
  * Plugin URI: http://kishorkhambu.com.np/plugins/
18
  * Description: A wordpress plugin to create custom dynamic widget area.
19
- * Version: 1.2.1
20
  * Author: Kishor Khambu
21
  * Author URI: http://kishorkhambu.com.np
22
  * License: GPL-2.0+
16
  * Plugin Name: WP Custom Widget area
17
  * Plugin URI: http://kishorkhambu.com.np/plugins/
18
  * Description: A wordpress plugin to create custom dynamic widget area.
19
+ * Version: 1.2.2
20
  * Author: Kishor Khambu
21
  * Author URI: http://kishorkhambu.com.np
22
  * License: GPL-2.0+