Changeset 2988045
- Timestamp:
- 11/02/2023 12:36:03 PM (2 years ago)
- Location:
- order-sync-with-google-sheets-for-woocommerce
- Files:
-
- 6 edited
- 1 copied
-
tags/1.4.1 (copied) (copied from order-sync-with-google-sheets-for-woocommerce/trunk)
-
tags/1.4.1/includes/classes/class-hooks.php (modified) (2 diffs)
-
tags/1.4.1/order-sync-with-google-sheets-for-woocommerce.php (modified) (2 diffs)
-
tags/1.4.1/readme.txt (modified) (2 diffs)
-
trunk/includes/classes/class-hooks.php (modified) (2 diffs)
-
trunk/order-sync-with-google-sheets-for-woocommerce.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
order-sync-with-google-sheets-for-woocommerce/tags/1.4.1/includes/classes/class-hooks.php
r2984187 r2988045 478 478 $clients->insights()->init(); 479 479 // Active automatic updater. 480 $clients->updater();481 480 $this->is_license_active(); 482 481 // Init WPPOOL Plugin. … … 487 486 $to = '2023-11-05'; 488 487 $from = '2023-10-23'; 489 $osgs_plugin->set_campaign($image, $to, $from ); 488 if( $osgs_plugin && is_object( $osgs_plugin ) && method_exists( $osgs_plugin, 'set_campaign' ) ) { 489 $osgs_plugin->set_campaign($image, $to, $from ); 490 } 490 491 } 491 492 } -
order-sync-with-google-sheets-for-woocommerce/tags/1.4.1/order-sync-with-google-sheets-for-woocommerce.php
r2984187 r2988045 4 4 * Plugin URI: https://wcordersync.com/ 5 5 * Description: Sync WooCommerce orders with Google Sheets. Perform WooCommerce order sync, e-commerce order management and sales order management from Google Sheets. 6 * Version: 1.4. 06 * Version: 1.4.1 7 7 * Author: WC Order Sync 8 8 * Author URI: https://wcordersync.com/ … … 23 23 */ 24 24 define( 'OSGSW_FILE', __FILE__ ); 25 define( 'OSGSW_VERSION', '1.4. 0' );25 define( 'OSGSW_VERSION', '1.4.1' ); 26 26 27 27 /** -
order-sync-with-google-sheets-for-woocommerce/tags/1.4.1/readme.txt
r2984187 r2988045 5 5 Tested up to: 6.3 6 6 Requires PHP: 5.6 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 118 118 119 119 == Changelog == 120 = 1.4.1 - 2 Nov 2023 = 121 * Fix: Fixed an issue that caused a fatal error when calling the set_campaign method on null due to a conflict between the SDK and some plugin 120 122 121 123 = 1.4.0 - 26 OCT 2023 = -
order-sync-with-google-sheets-for-woocommerce/trunk/includes/classes/class-hooks.php
r2984187 r2988045 478 478 $clients->insights()->init(); 479 479 // Active automatic updater. 480 $clients->updater();481 480 $this->is_license_active(); 482 481 // Init WPPOOL Plugin. … … 487 486 $to = '2023-11-05'; 488 487 $from = '2023-10-23'; 489 $osgs_plugin->set_campaign($image, $to, $from ); 488 if( $osgs_plugin && is_object( $osgs_plugin ) && method_exists( $osgs_plugin, 'set_campaign' ) ) { 489 $osgs_plugin->set_campaign($image, $to, $from ); 490 } 490 491 } 491 492 } -
order-sync-with-google-sheets-for-woocommerce/trunk/order-sync-with-google-sheets-for-woocommerce.php
r2984187 r2988045 4 4 * Plugin URI: https://wcordersync.com/ 5 5 * Description: Sync WooCommerce orders with Google Sheets. Perform WooCommerce order sync, e-commerce order management and sales order management from Google Sheets. 6 * Version: 1.4. 06 * Version: 1.4.1 7 7 * Author: WC Order Sync 8 8 * Author URI: https://wcordersync.com/ … … 23 23 */ 24 24 define( 'OSGSW_FILE', __FILE__ ); 25 define( 'OSGSW_VERSION', '1.4. 0' );25 define( 'OSGSW_VERSION', '1.4.1' ); 26 26 27 27 /** -
order-sync-with-google-sheets-for-woocommerce/trunk/readme.txt
r2984187 r2988045 5 5 Tested up to: 6.3 6 6 Requires PHP: 5.6 7 Stable tag: 1.4. 07 Stable tag: 1.4.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 118 118 119 119 == Changelog == 120 = 1.4.1 - 2 Nov 2023 = 121 * Fix: Fixed an issue that caused a fatal error when calling the set_campaign method on null due to a conflict between the SDK and some plugin 120 122 121 123 = 1.4.0 - 26 OCT 2023 =
Note: See TracChangeset
for help on using the changeset viewer.