Version Description
- 2018-01-29 =
- Fix - Call to undefined method causes error.
Download this release
Release Info
Developer | royho |
Plugin | WooCommerce Square |
Version | 1.0.26 |
Comparing to | |
See all releases |
Code changes from version 1.0.25 to 1.0.26
- changelog.txt +3 -0
- readme.txt +5 -2
- woocommerce-square.php +3 -3
changelog.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
*** WooCommerce Square Changelog ***
|
2 |
|
|
|
|
|
|
|
3 |
2018-01-29 - version 1.0.25
|
4 |
* Tweaks - Error handling.
|
5 |
* Add - Public Release on .org
|
1 |
*** WooCommerce Square Changelog ***
|
2 |
|
3 |
+
2018-01-29 - version 1.0.26
|
4 |
+
* Fix - Call to undefined method causes error.
|
5 |
+
|
6 |
2018-01-29 - version 1.0.25
|
7 |
* Tweaks - Error handling.
|
8 |
* Add - Public Release on .org
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: credit card, square, woocommerce, inventory sync
|
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -57,6 +57,9 @@ If you get stuck, you can ask for help in the Plugin Forum.
|
|
57 |
|
58 |
== Changelog ==
|
59 |
|
|
|
|
|
|
|
60 |
= 1.0.25 - 2018-01-29 =
|
61 |
* Tweaks - Error handling.
|
62 |
* Public release on .org
|
@@ -68,5 +71,5 @@ If you get stuck, you can ask for help in the Plugin Forum.
|
|
68 |
|
69 |
== Upgrade Notice ==
|
70 |
|
71 |
-
= 1.0.
|
72 |
* Public Release!
|
4 |
Requires at least: 4.4
|
5 |
Tested up to: 4.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 1.0.26
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
57 |
|
58 |
== Changelog ==
|
59 |
|
60 |
+
= 1.0.26 - 2018-01-29 =
|
61 |
+
* Fix - Call to undefined method causes error.
|
62 |
+
|
63 |
= 1.0.25 - 2018-01-29 =
|
64 |
* Tweaks - Error handling.
|
65 |
* Public release on .org
|
71 |
|
72 |
== Upgrade Notice ==
|
73 |
|
74 |
+
= 1.0.25 =
|
75 |
* Public Release!
|
woocommerce-square.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: WooCommerce Square
|
4 |
-
* Version: 1.0.
|
5 |
* Plugin URI: https://woocommerce.com/products/square/
|
6 |
* Description: Adds ability to sync inventory between WooCommerce and Square POS. In addition, you can also make purchases through the Square payment gateway.
|
7 |
* Author: WooCommerce
|
@@ -23,7 +23,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
23 |
|
24 |
if ( ! class_exists( 'Woocommerce_Square' ) ) :
|
25 |
|
26 |
-
define( 'WC_SQUARE_VERSION', '1.0.
|
27 |
|
28 |
/**
|
29 |
* Main class.
|
@@ -282,7 +282,7 @@ if ( ! class_exists( 'Woocommerce_Square' ) ) :
|
|
282 |
|
283 |
register_deactivation_hook( __FILE__, array( 'WC_Square_Deactivation', 'deactivate' ) );
|
284 |
|
285 |
-
if (
|
286 |
|
287 |
add_filter( 'woocommerce_integrations', array( $this, 'include_integration' ) );
|
288 |
|
1 |
<?php
|
2 |
/**
|
3 |
* Plugin Name: WooCommerce Square
|
4 |
+
* Version: 1.0.26
|
5 |
* Plugin URI: https://woocommerce.com/products/square/
|
6 |
* Description: Adds ability to sync inventory between WooCommerce and Square POS. In addition, you can also make purchases through the Square payment gateway.
|
7 |
* Author: WooCommerce
|
23 |
|
24 |
if ( ! class_exists( 'Woocommerce_Square' ) ) :
|
25 |
|
26 |
+
define( 'WC_SQUARE_VERSION', '1.0.26' );
|
27 |
|
28 |
/**
|
29 |
* Main class.
|
282 |
|
283 |
register_deactivation_hook( __FILE__, array( 'WC_Square_Deactivation', 'deactivate' ) );
|
284 |
|
285 |
+
if ( class_exists( 'WooCommerce' ) ) {
|
286 |
|
287 |
add_filter( 'woocommerce_integrations', array( $this, 'include_integration' ) );
|
288 |
|