Version Description
- Fix the issue of adding attributes in the "Attributes" tab
Download this release
Release Info
Developer | themealien |
Plugin | Variation Swatches for WooCommerce |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
- assets/js/admin.js +1 -1
- readme.txt +5 -2
- variation-swatches-for-woocommerce.php +2 -2
assets/js/admin.js
CHANGED
@@ -122,7 +122,7 @@ jQuery( document ).ready( function ( $ ) {
|
|
122 |
$spinner.removeClass( 'is-active' );
|
123 |
$msg.addClass( 'success' ).text( res.msg ).show();
|
124 |
|
125 |
-
$metabox.find( 'select.attribute_values' ).append( '<option value="' + res.
|
126 |
$metabox.find( 'select.attribute_values' ).change();
|
127 |
|
128 |
closeModal();
|
122 |
$spinner.removeClass( 'is-active' );
|
123 |
$msg.addClass( 'success' ).text( res.msg ).show();
|
124 |
|
125 |
+
$metabox.find( 'select.attribute_values' ).append( '<option value="' + res.id + '" selected="selected">' + res.name + '</option>' );
|
126 |
$metabox.find( 'select.attribute_values' ).change();
|
127 |
|
128 |
closeModal();
|
readme.txt
CHANGED
@@ -2,8 +2,8 @@
|
|
2 |
Contributors: themealien
|
3 |
Tags: woocommerce, product attribute, product color, product size, variation swatches, variable products
|
4 |
Requires at least: 4.5
|
5 |
-
Tested up to: 4.
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv2 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -76,6 +76,9 @@ Yes, it will work with any theme, but may require some styling to make it match
|
|
76 |
|
77 |
== Changelog ==
|
78 |
|
|
|
|
|
|
|
79 |
= 1.0.2 =
|
80 |
* Support WooCommerce 3.0
|
81 |
|
2 |
Contributors: themealien
|
3 |
Tags: woocommerce, product attribute, product color, product size, variation swatches, variable products
|
4 |
Requires at least: 4.5
|
5 |
+
Tested up to: 4.8
|
6 |
+
Stable tag: 1.0.3
|
7 |
License: GPLv2 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
76 |
|
77 |
== Changelog ==
|
78 |
|
79 |
+
= 1.0.3 =
|
80 |
+
* Fix the issue of adding attributes in the "Attributes" tab
|
81 |
+
|
82 |
= 1.0.2 =
|
83 |
* Support WooCommerce 3.0
|
84 |
|
variation-swatches-for-woocommerce.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
* Plugin Name: WooCommerce Variation Swatches
|
4 |
* Plugin URI: http://themealien.com/wordpress-plugin/woocommerce-variation-swatches
|
5 |
* Description: An extension of WooCommerce to make variable products be more beauty and friendly with users.
|
6 |
-
* Version: 1.0.
|
7 |
* Author: ThemeAlien
|
8 |
* Author URI: http://themealien.com/
|
9 |
* Requires at least: 4.5
|
10 |
-
* Tested up to: 4.
|
11 |
* License: GPLv2 or later
|
12 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
13 |
* Text Domain: tawvs
|
3 |
* Plugin Name: WooCommerce Variation Swatches
|
4 |
* Plugin URI: http://themealien.com/wordpress-plugin/woocommerce-variation-swatches
|
5 |
* Description: An extension of WooCommerce to make variable products be more beauty and friendly with users.
|
6 |
+
* Version: 1.0.3
|
7 |
* Author: ThemeAlien
|
8 |
* Author URI: http://themealien.com/
|
9 |
* Requires at least: 4.5
|
10 |
+
* Tested up to: 4.8
|
11 |
* License: GPLv2 or later
|
12 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
13 |
* Text Domain: tawvs
|