Version Description
Woocommerce compatibility raised to 4.6
Download this release
Release Info
Developer | printful |
Plugin | Printful Integration for WooCommerce |
Version | 2.1.16 |
Comparing to | |
See all releases |
Code changes from version 2.1.15 to 2.1.16
- printful-shipping.php +6 -6
- readme.txt +7 -1
printful-shipping.php
CHANGED
@@ -3,13 +3,13 @@
|
|
3 |
Plugin Name: Printful Integration for WooCommerce
|
4 |
Plugin URI: https://wordpress.org/plugins/printful-shipping-for-woocommerce/
|
5 |
Description: Calculate correct shipping and tax rates for your Printful-Woocommerce integration.
|
6 |
-
Version: 2.1.
|
7 |
Author: Printful
|
8 |
Author URI: http://www.printful.com
|
9 |
License: GPL2 http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Text Domain: printful
|
11 |
WC requires at least: 3.0.0
|
12 |
-
WC tested up to: 4.
|
13 |
*/
|
14 |
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
@@ -20,7 +20,7 @@ if ( ! defined( 'PF_PLUGIN_FILE' ) ) {
|
|
20 |
|
21 |
class Printful_Base {
|
22 |
|
23 |
-
const VERSION = '2.1.
|
24 |
const PF_HOST = 'https://www.printful.com/';
|
25 |
const PF_API_HOST = 'https://api.printful.com/';
|
26 |
|
@@ -30,9 +30,6 @@ class Printful_Base {
|
|
30 |
public function __construct() {
|
31 |
add_action( 'plugins_loaded', array( $this, 'init' ) );
|
32 |
add_action( 'plugins_loaded', array( $this, 'printful_load_plugin_textdomain') );
|
33 |
-
|
34 |
-
// WP REST API.
|
35 |
-
$this->rest_api_init();
|
36 |
}
|
37 |
|
38 |
/**
|
@@ -44,6 +41,9 @@ class Printful_Base {
|
|
44 |
return;
|
45 |
}
|
46 |
|
|
|
|
|
|
|
47 |
//load required classes
|
48 |
require_once 'includes/class-printful-integration.php';
|
49 |
require_once 'includes/class-printful-carriers.php';
|
3 |
Plugin Name: Printful Integration for WooCommerce
|
4 |
Plugin URI: https://wordpress.org/plugins/printful-shipping-for-woocommerce/
|
5 |
Description: Calculate correct shipping and tax rates for your Printful-Woocommerce integration.
|
6 |
+
Version: 2.1.16
|
7 |
Author: Printful
|
8 |
Author URI: http://www.printful.com
|
9 |
License: GPL2 http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
Text Domain: printful
|
11 |
WC requires at least: 3.0.0
|
12 |
+
WC tested up to: 4.6
|
13 |
*/
|
14 |
|
15 |
if ( ! defined( 'ABSPATH' ) ) exit;
|
20 |
|
21 |
class Printful_Base {
|
22 |
|
23 |
+
const VERSION = '2.1.16';
|
24 |
const PF_HOST = 'https://www.printful.com/';
|
25 |
const PF_API_HOST = 'https://api.printful.com/';
|
26 |
|
30 |
public function __construct() {
|
31 |
add_action( 'plugins_loaded', array( $this, 'init' ) );
|
32 |
add_action( 'plugins_loaded', array( $this, 'printful_load_plugin_textdomain') );
|
|
|
|
|
|
|
33 |
}
|
34 |
|
35 |
/**
|
41 |
return;
|
42 |
}
|
43 |
|
44 |
+
// WP REST API.
|
45 |
+
$this->rest_api_init();
|
46 |
+
|
47 |
//load required classes
|
48 |
require_once 'includes/class-printful-integration.php';
|
49 |
require_once 'includes/class-printful-carriers.php';
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: woocommerce, printful, drop shipping, shipping, shipping rates, fulfillmen
|
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.5
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 2.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -65,6 +65,9 @@ Go to https://www.printful.com/dashboard/store , select your WooCommerce store,
|
|
65 |
|
66 |
== Upgrade Notice ==
|
67 |
|
|
|
|
|
|
|
68 |
= 2.1.15 =
|
69 |
Fix translations
|
70 |
|
@@ -187,6 +190,9 @@ First release
|
|
187 |
|
188 |
== Changelog ==
|
189 |
|
|
|
|
|
|
|
190 |
= 2.1.15 =
|
191 |
* Fix translations
|
192 |
|
4 |
Requires at least: 4.9
|
5 |
Tested up to: 5.5
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 2.1.16
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
65 |
|
66 |
== Upgrade Notice ==
|
67 |
|
68 |
+
= 2.1.16 =
|
69 |
+
Woocommerce compatibility raised to 4.6
|
70 |
+
|
71 |
= 2.1.15 =
|
72 |
Fix translations
|
73 |
|
190 |
|
191 |
== Changelog ==
|
192 |
|
193 |
+
= 2.1.16 =
|
194 |
+
* Woocommerce compatibility raised to 4.6
|
195 |
+
|
196 |
= 2.1.15 =
|
197 |
* Fix translations
|
198 |
|