WooCommerce Direct Checkout - Version 2.2.1

Version Description

  • Fix. WooCommerce Direct Checkout documentation link
Download this release

Release Info

Developer quadlayers
Plugin Icon 128x128 WooCommerce Direct Checkout
Version 2.2.1
Comparing to
See all releases

Code changes from version 2.2.0 to 2.2.1

Files changed (2) hide show
  1. readme.txt +7 -2
  2. woocommerce-direct-checkout.php +10 -5
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.8
6
  Tested up to: 5.2.2
7
- Stable tag: 2.2.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -12,7 +12,7 @@ Formerly "WooCommerce Direct Checkout". This plugin simplifies the entire WooCom
12
 
13
  == Description ==
14
 
15
- [Premium](https://quadlayers.com/portfolio/woocommerce-direct-checkout/) | [Demo](https://quadlayers.com/woocommerce-direct/) | [Community](https://www.facebook.com/groups/quadlayers/)
16
 
17
  WooCommerce Direct Checkout allows you to simplifies the checkout process by skipping the shopping cart page. The “Add to cart” button is added in each product to redirect customers to the checkout page. This can encourage buyers to shop more and quickly process the transaction, which can lead to a possible increase in sales.
18
 
@@ -49,6 +49,11 @@ The premium version of WooCommerce Direct Checkot allows to include a quick purc
49
 
50
  == Changelog ==
51
 
 
 
 
 
 
52
  = 2.2.0 =
53
  * Fix. WooCommerce Quick Purchase button empty
54
  * Fix. WooCommerce Stripe card form update
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.8
6
  Tested up to: 5.2.2
7
+ Stable tag: 2.2.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
12
 
13
  == Description ==
14
 
15
+ [Premium](https://quadlayers.com/portfolio/woocommerce-direct-checkout/) | [Demo](https://quadlayers.com/woocommerce-direct/) | [Documentation](https://quadlayers.com/documentation/woocommerce-direct-checkout/) | [Community](https://www.facebook.com/groups/quadlayers/)
16
 
17
  WooCommerce Direct Checkout allows you to simplifies the checkout process by skipping the shopping cart page. The “Add to cart” button is added in each product to redirect customers to the checkout page. This can encourage buyers to shop more and quickly process the transaction, which can lead to a possible increase in sales.
18
 
49
 
50
  == Changelog ==
51
 
52
+ [https://quadlayers.com/documentation/woocommerce-direct-checkout/changelog/](https://quadlayers.com/documentation/woocommerce-direct-checkout/changelog/)
53
+
54
+ = 2.2.1 =
55
+ * Fix. WooCommerce Direct Checkout documentation link
56
+
57
  = 2.2.0 =
58
  * Fix. WooCommerce Quick Purchase button empty
59
  * Fix. WooCommerce Stripe card form update
woocommerce-direct-checkout.php CHANGED
@@ -2,7 +2,7 @@
2
  /**
3
  * Plugin Name: WooCommerce Direct Checkout
4
  * Description: Simplifies the checkout process to improve your sales rate.
5
- * Version: 2.2.0
6
  * Author: QuadLayers
7
  * Author URI: https://www.quadlayers.com
8
  * Copyright: 2019 QuadLayers (https://www.quadlayers.com)
@@ -15,7 +15,7 @@ if (!defined('QLWCDC_PLUGIN_NAME')) {
15
  define('QLWCDC_PLUGIN_NAME', 'WooCommerce Direct Checkout');
16
  }
17
  if (!defined('QLWCDC_PLUGIN_VERSION')) {
18
- define('QLWCDC_PLUGIN_VERSION', '2.2.0');
19
  }
20
  if (!defined('QLWCDC_PLUGIN_FILE')) {
21
  define('QLWCDC_PLUGIN_FILE', __FILE__);
@@ -33,10 +33,13 @@ if (!defined('QLWCDC_REVIEW_URL')) {
33
  define('QLWCDC_REVIEW_URL', 'https://wordpress.org/support/plugin/woocommerce-direct-checkout/reviews/?filter=5#new-post');
34
  }
35
  if (!defined('QLWCDC_DEMO_URL')) {
36
- define('QLWCDC_DEMO_URL', 'https://quadlayers.com/portfolio/woocommerce-direct-checkout/?utm_source=qlwcdc_admin');
 
 
 
37
  }
38
  if (!defined('QLWCDC_PURCHASE_URL')) {
39
- define('QLWCDC_PURCHASE_URL', QLWCDC_DEMO_URL);
40
  }
41
  if (!defined('QLWCDC_SUPPORT_URL')) {
42
  define('QLWCDC_SUPPORT_URL', 'https://quadlayers.com/account/support/?utm_source=qlwcdc_admin');
@@ -150,9 +153,11 @@ if (!class_exists('QLWCDC')) {
150
  $array_keys = array_keys($sections);
151
 
152
  foreach ($sections as $id => $label) {
153
- echo '<li><a href="' . admin_url('admin.php?page=wc-settings&tab=qlwcdc&section=' . sanitize_title($id)) . '" class="' . ( $current_section == $id ? 'current' : '' ) . '">' . $label . '</a> ' . ( end($array_keys) == $id ? '' : '|' ) . ' </li>';
154
  }
155
 
 
 
156
  echo '</ul><br class="clear" />';
157
  }
158
 
2
  /**
3
  * Plugin Name: WooCommerce Direct Checkout
4
  * Description: Simplifies the checkout process to improve your sales rate.
5
+ * Version: 2.2.1
6
  * Author: QuadLayers
7
  * Author URI: https://www.quadlayers.com
8
  * Copyright: 2019 QuadLayers (https://www.quadlayers.com)
15
  define('QLWCDC_PLUGIN_NAME', 'WooCommerce Direct Checkout');
16
  }
17
  if (!defined('QLWCDC_PLUGIN_VERSION')) {
18
+ define('QLWCDC_PLUGIN_VERSION', '2.2.1');
19
  }
20
  if (!defined('QLWCDC_PLUGIN_FILE')) {
21
  define('QLWCDC_PLUGIN_FILE', __FILE__);
33
  define('QLWCDC_REVIEW_URL', 'https://wordpress.org/support/plugin/woocommerce-direct-checkout/reviews/?filter=5#new-post');
34
  }
35
  if (!defined('QLWCDC_DEMO_URL')) {
36
+ define('QLWCDC_DEMO_URL', 'https://quadlayers.com/woocommerce-direct?utm_source=qlwcdc_admin');
37
+ }
38
+ if (!defined('QLWCDC_DOCUMENTATION_URL')) {
39
+ define('QLWCDC_DOCUMENTATION_URL', 'https://quadlayers.com/documentation/woocommerce-direct-checkout/?utm_source=qlwcdc_admin');
40
  }
41
  if (!defined('QLWCDC_PURCHASE_URL')) {
42
+ define('QLWCDC_PURCHASE_URL', 'https://quadlayers.com/portfolio/woocommerce-direct-checkout/?utm_source=qlwcdc_admin');
43
  }
44
  if (!defined('QLWCDC_SUPPORT_URL')) {
45
  define('QLWCDC_SUPPORT_URL', 'https://quadlayers.com/account/support/?utm_source=qlwcdc_admin');
153
  $array_keys = array_keys($sections);
154
 
155
  foreach ($sections as $id => $label) {
156
+ echo '<li><a href="' . admin_url('admin.php?page=wc-settings&tab=qlwcdc&section=' . sanitize_title($id)) . '" class="' . ( $current_section == $id ? 'current' : '' ) . '">' . $label . '</a> | </li>';
157
  }
158
 
159
+ echo '<li><a target="_blank" href="' . QLWCDC_DOCUMENTATION_URL . '">' . esc_html__('Documentation', 'woocommerce-direct-checkout') . '</a> ' . ( end($array_keys) == $id ? '' : '|' ) . ' </li>';
160
+
161
  echo '</ul><br class="clear" />';
162
  }
163