Version Description
- 2016-09-08 =
- Fixed saving select field
Download this release
Release Info
Developer | wpdesk |
Plugin | Flexible Checkout Fields for WooCommerce – WooCommerce Checkout Manager |
Version | 1.2.1 |
Comparing to | |
See all releases |
Code changes from version 1.2 to 1.2.1
- assets/css/admin.css +7 -0
- class/views/settings-fields.php +1 -1
- flexible-checkout-fields.php +1 -1
- readme.txt +4 -1
assets/css/admin.css
CHANGED
@@ -61,6 +61,13 @@ span.inspire-file-error {
|
|
61 |
padding-top: 0;
|
62 |
}
|
63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
.woocommerce_page_inspire_checkout_fields_settings .field-item.just-added .menu-item-bar .menu-item-handle {
|
65 |
border-color: #999;
|
66 |
}
|
61 |
padding-top: 0;
|
62 |
}
|
63 |
|
64 |
+
.woocommerce_page_inspire_checkout_fields_settings .field-item .menu-item-bar .menu-item-handle .item-title {
|
65 |
+
margin-right: 1.5em;
|
66 |
+
overflow: hidden;
|
67 |
+
text-overflow: ellipsis;
|
68 |
+
white-space: nowrap;
|
69 |
+
}
|
70 |
+
|
71 |
.woocommerce_page_inspire_checkout_fields_settings .field-item.just-added .menu-item-bar .menu-item-handle {
|
72 |
border-color: #999;
|
73 |
}
|
class/views/settings-fields.php
CHANGED
@@ -171,7 +171,7 @@
|
|
171 |
</div>
|
172 |
|
173 |
<?php if( $is_custom_field ): ?>
|
174 |
-
<div class="element-option<?php if(
|
175 |
<label for="option_<?php echo $name ?>"><?php _e( 'Options', 'flexible-checkout-fields' ) ?></label>
|
176 |
|
177 |
<textarea id="option_<?php echo $name ?>" name="inspire_checkout_fields[settings][<?php echo $key ?>][<?php echo $name ?>][option]"><?php echo isset( $settings[$key][$name]['option'] )?$settings[$key][$name]['option']:''; ?></textarea>
|
171 |
</div>
|
172 |
|
173 |
<?php if( $is_custom_field ): ?>
|
174 |
+
<div class="element-option<?php if( isset($checkout_field_type[$settings[$key][$name]['type']]['has_options']) && $checkout_field_type[$settings[$key][$name]['type']]['has_options']) echo " show" ?>">
|
175 |
<label for="option_<?php echo $name ?>"><?php _e( 'Options', 'flexible-checkout-fields' ) ?></label>
|
176 |
|
177 |
<textarea id="option_<?php echo $name ?>" name="inspire_checkout_fields[settings][<?php echo $key ?>][<?php echo $name ?>][option]"><?php echo isset( $settings[$key][$name]['option'] )?$settings[$key][$name]['option']:''; ?></textarea>
|
flexible-checkout-fields.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Flexible Checkout Fields
|
4 |
Plugin URI: https://www.wpdesk.net/products/flexible-checkout-fields-pro-woocommerce/
|
5 |
Description: Manage your WooCommerce checkout fields. Change order, labels, placeholders and add new fields.
|
6 |
-
Version: 1.2
|
7 |
Author: WP Desk
|
8 |
Author URI: https://www.wpdesk.net/
|
9 |
Text Domain: flexible-checkout-fields
|
3 |
Plugin Name: Flexible Checkout Fields
|
4 |
Plugin URI: https://www.wpdesk.net/products/flexible-checkout-fields-pro-woocommerce/
|
5 |
Description: Manage your WooCommerce checkout fields. Change order, labels, placeholders and add new fields.
|
6 |
+
Version: 1.2.1
|
7 |
Author: WP Desk
|
8 |
Author URI: https://www.wpdesk.net/
|
9 |
Text Domain: flexible-checkout-fields
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.wpdesk.net/flexible-checkout-fields-woocommerce/
|
|
4 |
Tags: woocommerce checkout, woocommerce checkout fields, flexible checkout fields, woocommerce checkout manager, woocommerce checkout editor, woocommerce fields manager, woocommerce fields editor, woocommerce custom checkout fields, woocommerce checkout options, woocommerce checkout pro, woocommerce custom sections, woocommerce file upload
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.6
|
7 |
-
Stable tag: 1.2
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -129,6 +129,9 @@ If you are upgrading from the old WooCommerce Checkout Fields version (1.1, wooc
|
|
129 |
|
130 |
== Changelog ==
|
131 |
|
|
|
|
|
|
|
132 |
= 1.2 - 2016-09-07 =
|
133 |
* Major Update!
|
134 |
* Released in WordPress Plugin Directory
|
4 |
Tags: woocommerce checkout, woocommerce checkout fields, flexible checkout fields, woocommerce checkout manager, woocommerce checkout editor, woocommerce fields manager, woocommerce fields editor, woocommerce custom checkout fields, woocommerce checkout options, woocommerce checkout pro, woocommerce custom sections, woocommerce file upload
|
5 |
Requires at least: 4.0
|
6 |
Tested up to: 4.6
|
7 |
+
Stable tag: 1.2.1
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
129 |
|
130 |
== Changelog ==
|
131 |
|
132 |
+
= 1.2.1 - 2016-09-08 =
|
133 |
+
* Fixed saving select field
|
134 |
+
|
135 |
= 1.2 - 2016-09-07 =
|
136 |
* Major Update!
|
137 |
* Released in WordPress Plugin Directory
|