Version Description
Download this release
Release Info
Developer | quadlayers |
Plugin | WooCommerce Checkout Manager |
Version | 6.3.9 |
Comparing to | |
See all releases |
Code changes from version 6.3.8 to 6.3.9
- includes/quadlayers/links.php +2 -1
- readme.txt +4 -1
- woocommerce-checkout-manager.php +4 -4
includes/quadlayers/links.php
CHANGED
@@ -9,8 +9,9 @@ class WOOCCM_Admin_Links {
|
|
9 |
}
|
10 |
|
11 |
public function add_action_links( $links ) {
|
|
|
12 |
$links[] = '<a target="_blank" href="' . WOOCCM_DEMO_URL . '">' . esc_html__( 'Documentation', 'woocommerce-checkout-manager' ) . '</a>';
|
13 |
-
$links[] = '<a
|
14 |
return $links;
|
15 |
}
|
16 |
|
9 |
}
|
10 |
|
11 |
public function add_action_links( $links ) {
|
12 |
+
$links[] = '<a target="_blank" href="' . WOOCCM_PREMIUM_SELL_URL . '">' . esc_html__( 'Premium', 'woocommerce-checkout-manager' ) . '</a>';
|
13 |
$links[] = '<a target="_blank" href="' . WOOCCM_DEMO_URL . '">' . esc_html__( 'Documentation', 'woocommerce-checkout-manager' ) . '</a>';
|
14 |
+
$links[] = '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=' . sanitize_title( WOOCCM_PREFIX ) ) . '">' . esc_html__( 'Settings', 'woocommerce-checkout-manager' ) . '</a>';
|
15 |
return $links;
|
16 |
}
|
17 |
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: checkout field editor, woocommerce checkout field editor, checkout manager
|
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 6.1
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 6.3.
|
9 |
WC requires at least: 3.1.0
|
10 |
WC tested up to: 7.1
|
11 |
License: GPLv3
|
@@ -149,6 +149,9 @@ Your Order data can be reviewed in each order within the default WooCommerce Ord
|
|
149 |
|
150 |
== Changelog ==
|
151 |
|
|
|
|
|
|
|
152 |
= 6.3.8
|
153 |
* New. Regex validation for premium version
|
154 |
|
5 |
Requires at least: 4.9
|
6 |
Tested up to: 6.1
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 6.3.9
|
9 |
WC requires at least: 3.1.0
|
10 |
WC tested up to: 7.1
|
11 |
License: GPLv3
|
149 |
|
150 |
== Changelog ==
|
151 |
|
152 |
+
= 6.3.9
|
153 |
+
* New. Settings link
|
154 |
+
|
155 |
= 6.3.8
|
156 |
* New. Regex validation for premium version
|
157 |
|
woocommerce-checkout-manager.php
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
-
* Plugin Name: Checkout
|
5 |
* Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
|
6 |
* Description: Manage and customize WooCommerce Checkout fields (Add, Edit, Delete or re-order fields).
|
7 |
-
* Version: 6.3.
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
@@ -16,8 +16,8 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
16 |
die( '-1' );
|
17 |
}
|
18 |
|
19 |
-
define( 'WOOCCM_PLUGIN_NAME', 'Checkout
|
20 |
-
define( 'WOOCCM_PLUGIN_VERSION', '6.3.
|
21 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|
22 |
define( 'WOOCCM_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
23 |
define( 'WOOCCM_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
1 |
<?php
|
2 |
|
3 |
/**
|
4 |
+
* Plugin Name: WooCommerce Checkout Manager
|
5 |
* Plugin URI: https://quadlayers.com/portfolio/woocommerce-checkout-manager/
|
6 |
* Description: Manage and customize WooCommerce Checkout fields (Add, Edit, Delete or re-order fields).
|
7 |
+
* Version: 6.3.9
|
8 |
* Author: QuadLayers
|
9 |
* Author URI: https://quadlayers.com
|
10 |
* License: GPLv3
|
16 |
die( '-1' );
|
17 |
}
|
18 |
|
19 |
+
define( 'WOOCCM_PLUGIN_NAME', 'WooCommerce Checkout Manager' );
|
20 |
+
define( 'WOOCCM_PLUGIN_VERSION', '6.3.9' );
|
21 |
define( 'WOOCCM_PLUGIN_FILE', __FILE__ );
|
22 |
define( 'WOOCCM_PLUGIN_DIR', __DIR__ . DIRECTORY_SEPARATOR );
|
23 |
define( 'WOOCCM_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|