Version Description
- Fix: WooCommerce compatibility
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Direct Checkout |
Version | 2.6.2 |
Comparing to | |
See all releases |
Code changes from version 2.6.1 to 2.6.2
- readme.txt +6 -3
- woocommerce-direct-checkout.php +34 -34
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:
|
7 |
-
Stable tag: 2.6.
|
8 |
WC requires at least: 3.1.0
|
9 |
-
WC tested up to: 6.
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
12 |
|
@@ -64,6 +64,9 @@ The premium version of WooCommerce Direct Checkot allows to include a quick purc
|
|
64 |
|
65 |
== Changelog ==
|
66 |
|
|
|
|
|
|
|
67 |
= 2.6.1 =
|
68 |
* Fix: WooCommerce compatibility
|
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.0.1
|
7 |
+
Stable tag: 2.6.2
|
8 |
WC requires at least: 3.1.0
|
9 |
+
WC tested up to: 6.6
|
10 |
License: GPLv3
|
11 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
12 |
|
64 |
|
65 |
== Changelog ==
|
66 |
|
67 |
+
= 2.6.2 =
|
68 |
+
* Fix: WooCommerce compatibility
|
69 |
+
|
70 |
= 2.6.1 =
|
71 |
* Fix: WooCommerce compatibility
|
72 |
|
woocommerce-direct-checkout.php
CHANGED
@@ -4,62 +4,62 @@
|
|
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.6.
|
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: 6.
|
14 |
*/
|
15 |
-
if (!defined('ABSPATH')) {
|
16 |
-
|
17 |
}
|
18 |
-
if (!defined('QLWCDC_PLUGIN_NAME')) {
|
19 |
-
|
20 |
}
|
21 |
-
if (!defined('QLWCDC_PLUGIN_VERSION')) {
|
22 |
-
|
23 |
}
|
24 |
-
if (!defined('QLWCDC_PLUGIN_FILE')) {
|
25 |
-
|
26 |
}
|
27 |
-
if (!defined('QLWCDC_PLUGIN_DIR')) {
|
28 |
-
|
29 |
}
|
30 |
-
if (!defined('QLWCDC_PREFIX')) {
|
31 |
-
|
32 |
}
|
33 |
-
if (!defined('QLWCDC_DOMAIN')) {
|
34 |
-
|
35 |
}
|
36 |
-
if (!defined('QLWCDC_WORDPRESS_URL')) {
|
37 |
-
|
38 |
}
|
39 |
-
if (!defined('QLWCDC_REVIEW_URL')) {
|
40 |
-
|
41 |
}
|
42 |
-
if (!defined('QLWCDC_DEMO_URL')) {
|
43 |
-
|
44 |
}
|
45 |
-
if (!defined('QLWCDC_DOCUMENTATION_URL')) {
|
46 |
-
|
47 |
}
|
48 |
-
if (!defined('QLWCDC_PURCHASE_URL')) {
|
49 |
-
|
50 |
}
|
51 |
-
if (!defined('QLWCDC_SUPPORT_URL')) {
|
52 |
-
|
53 |
}
|
54 |
-
if (!defined('QLWCDC_GROUP_URL')) {
|
55 |
-
|
56 |
}
|
57 |
|
58 |
-
if (!class_exists('QLWCDC')) {
|
59 |
-
|
60 |
}
|
61 |
|
62 |
|
63 |
-
if (!class_exists('QL_Widget')) {
|
64 |
-
|
65 |
}
|
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.6.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: 6.6
|
14 |
*/
|
15 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
16 |
+
die( '-1' );
|
17 |
}
|
18 |
+
if ( ! defined( 'QLWCDC_PLUGIN_NAME' ) ) {
|
19 |
+
define( 'QLWCDC_PLUGIN_NAME', 'Direct Checkout for WooCommerce' );
|
20 |
}
|
21 |
+
if ( ! defined( 'QLWCDC_PLUGIN_VERSION' ) ) {
|
22 |
+
define( 'QLWCDC_PLUGIN_VERSION', '2.6.1' );
|
23 |
}
|
24 |
+
if ( ! defined( 'QLWCDC_PLUGIN_FILE' ) ) {
|
25 |
+
define( 'QLWCDC_PLUGIN_FILE', __FILE__ );
|
26 |
}
|
27 |
+
if ( ! defined( 'QLWCDC_PLUGIN_DIR' ) ) {
|
28 |
+
define( 'QLWCDC_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
29 |
}
|
30 |
+
if ( ! defined( 'QLWCDC_PREFIX' ) ) {
|
31 |
+
define( 'QLWCDC_PREFIX', 'qlwcdc' );
|
32 |
}
|
33 |
+
if ( ! defined( 'QLWCDC_DOMAIN' ) ) {
|
34 |
+
define( 'QLWCDC_DOMAIN', QLWCDC_PREFIX );
|
35 |
}
|
36 |
+
if ( ! defined( 'QLWCDC_WORDPRESS_URL' ) ) {
|
37 |
+
define( 'QLWCDC_WORDPRESS_URL', 'https://wordpress.org/plugins/woocommerce-direct-checkout/' );
|
38 |
}
|
39 |
+
if ( ! defined( 'QLWCDC_REVIEW_URL' ) ) {
|
40 |
+
define( 'QLWCDC_REVIEW_URL', 'https://wordpress.org/support/plugin/woocommerce-direct-checkout/reviews/?filter=5#new-post' );
|
41 |
}
|
42 |
+
if ( ! defined( 'QLWCDC_DEMO_URL' ) ) {
|
43 |
+
define( 'QLWCDC_DEMO_URL', 'https://quadlayers.com/woocommerce-direct?utm_source=qlwcdc_admin' );
|
44 |
}
|
45 |
+
if ( ! defined( 'QLWCDC_DOCUMENTATION_URL' ) ) {
|
46 |
+
define( 'QLWCDC_DOCUMENTATION_URL', 'https://quadlayers.com/documentation/woocommerce-direct-checkout/?utm_source=qlwcdc_admin' );
|
47 |
}
|
48 |
+
if ( ! defined( 'QLWCDC_PURCHASE_URL' ) ) {
|
49 |
+
define( 'QLWCDC_PURCHASE_URL', 'https://quadlayers.com/portfolio/woocommerce-direct-checkout/?utm_source=qlwcdc_admin' );
|
50 |
}
|
51 |
+
if ( ! defined( 'QLWCDC_SUPPORT_URL' ) ) {
|
52 |
+
define( 'QLWCDC_SUPPORT_URL', 'https://quadlayers.com/account/support/?utm_source=qlwcdc_admin' );
|
53 |
}
|
54 |
+
if ( ! defined( 'QLWCDC_GROUP_URL' ) ) {
|
55 |
+
define( 'QLWCDC_GROUP_URL', 'https://www.facebook.com/groups/quadlayers' );
|
56 |
}
|
57 |
|
58 |
+
if ( ! class_exists( 'QLWCDC' ) ) {
|
59 |
+
include_once QLWCDC_PLUGIN_DIR . 'includes/qlwcdc.php';
|
60 |
}
|
61 |
|
62 |
|
63 |
+
if ( ! class_exists( 'QL_Widget' ) ) {
|
64 |
+
include_once QLWCDC_PLUGIN_DIR . 'includes/quadlayers/widget.php';
|
65 |
}
|