Version Description
- Fix: WordPress compatibility
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Direct Checkout |
Version | 2.7.2 |
Comparing to | |
See all releases |
Code changes from version 2.7.0 to 2.7.2
- readme.txt +9 -3
- woocommerce-direct-checkout.php +3 -3
readme.txt
CHANGED
@@ -3,10 +3,10 @@ Contributors: quadlayers
|
|
3 |
Donate link: https://quadlayers.com/portfolio/woocommerce-direct-checkout/
|
4 |
Tags: woocommerce, woocommerce ajax, woocommerce ajax cart, add to cart, woocommerce direct checkout, woocommerce quick buy, woocommerce remove checkout fields, woocommerce ajax single products, woocommerce one page checkout
|
5 |
Requires at least: 4.6
|
6 |
-
Tested up to: 6.
|
7 |
-
Stable tag: 2.7.
|
8 |
WC requires at least: 3.1.0
|
9 |
-
WC tested up to:
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
12 |
|
@@ -64,6 +64,12 @@ The premium version of WooCommerce Direct Checkot allows to include a quick purc
|
|
64 |
|
65 |
== Changelog ==
|
66 |
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
= 2.7.0 =
|
68 |
* Fix: PHP errors
|
69 |
|
3 |
Donate link: https://quadlayers.com/portfolio/woocommerce-direct-checkout/
|
4 |
Tags: woocommerce, woocommerce ajax, woocommerce ajax cart, add to cart, woocommerce direct checkout, woocommerce quick buy, woocommerce remove checkout fields, woocommerce ajax single products, woocommerce one page checkout
|
5 |
Requires at least: 4.6
|
6 |
+
Tested up to: 6.1
|
7 |
+
Stable tag: 2.7.2
|
8 |
WC requires at least: 3.1.0
|
9 |
+
WC tested up to: 7.0
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
12 |
|
64 |
|
65 |
== Changelog ==
|
66 |
|
67 |
+
= 2.7.2 =
|
68 |
+
* Fix: WordPress compatibility
|
69 |
+
|
70 |
+
= 2.7.1 =
|
71 |
+
* Fix: WooCommerce compatibility
|
72 |
+
|
73 |
= 2.7.0 =
|
74 |
* Fix: PHP errors
|
75 |
|
woocommerce-direct-checkout.php
CHANGED
@@ -4,20 +4,20 @@
|
|
4 |
* Plugin Name: Direct Checkout for WooCommerce
|
5 |
* Plugin URI: https://quadlayers.com/documentation/woocommerce-direct-checkout/
|
6 |
* Description: Simplifies the checkout process to improve your sales rate.
|
7 |
-
* Version: 2.7.
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
11 |
* Text Domain: woocommerce-direct-checkout
|
12 |
* WC requires at least: 3.1.0
|
13 |
-
* WC tested up to:
|
14 |
*/
|
15 |
if ( ! defined( 'ABSPATH' ) ) {
|
16 |
die( '-1' );
|
17 |
}
|
18 |
|
19 |
define( 'QLWCDC_PLUGIN_NAME', 'Direct Checkout for WooCommerce' );
|
20 |
-
define( 'QLWCDC_PLUGIN_VERSION', '2.7.
|
21 |
define( 'QLWCDC_PLUGIN_FILE', __FILE__ );
|
22 |
define( 'QLWCDC_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
23 |
define( 'QLWCDC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
4 |
* Plugin Name: Direct Checkout for WooCommerce
|
5 |
* Plugin URI: https://quadlayers.com/documentation/woocommerce-direct-checkout/
|
6 |
* Description: Simplifies the checkout process to improve your sales rate.
|
7 |
+
* Version: 2.7.2
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
11 |
* Text Domain: woocommerce-direct-checkout
|
12 |
* WC requires at least: 3.1.0
|
13 |
+
* WC tested up to: 7.0
|
14 |
*/
|
15 |
if ( ! defined( 'ABSPATH' ) ) {
|
16 |
die( '-1' );
|
17 |
}
|
18 |
|
19 |
define( 'QLWCDC_PLUGIN_NAME', 'Direct Checkout for WooCommerce' );
|
20 |
+
define( 'QLWCDC_PLUGIN_VERSION', '2.7.2' );
|
21 |
define( 'QLWCDC_PLUGIN_FILE', __FILE__ );
|
22 |
define( 'QLWCDC_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
23 |
define( 'QLWCDC_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|