Changeset 3275626
- Timestamp:
- 04/17/2025 09:53:31 AM (12 months ago)
- Location:
- easify-server-woocommerce/trunk
- Files:
-
- 5 edited
-
easify.php (modified) (2 diffs)
-
includes/class-easify-generic-easify-server.php (modified) (3 diffs)
-
includes/class-easify-wc-plugin-settings-page.php (modified) (3 diffs)
-
includes/class-easify-wc-send-order-to-easify.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easify-server-woocommerce/trunk/easify.php
r3166451 r3275626 5 5 * Plugin URI: https://www.easify.co.uk/wordpress/ 6 6 * Description: Connects Easify Business Management, EPOS (Electronic Point of Sale) and invoicing software to your WooCommerce enabled WordPress website. Allowing you to keep your online and offline shop's orders and stock control synchronised. 7 * Version: 4.3 87 * Version: 4.39 8 8 * License: GPL2 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 11 11 * Author URI: https://www.easify.co.uk/ 12 12 * Requires at least: 5.0 13 * Tested up to: 6. 6.214 * WC tested up to: 9. 013 * Tested up to: 6.7.2 14 * WC tested up to: 9.7 15 15 * 16 16 * @package easify-woocommerce-connector -
easify-server-woocommerce/trunk/includes/class-easify-generic-easify-server.php
r3136056 r3275626 4 4 5 5 /** 6 * Copyright (C) 202 4 Easify Ltd(email:support@easify.co.uk)6 * Copyright (C) 2025 Cambridge Software Development Ltd (t/a Easify) (email:support@easify.co.uk) 7 7 * This program is free software; you can redistribute it and/or 8 8 * modify it under the terms of the GNU General Public License … … 30 30 * 31 31 * @class Easify_Generic_Easify_Server 32 * @version 4.3 632 * @version 4.39 33 33 * @package easify-woocommerce-connector 34 34 * @author Easify … … 246 246 247 247 if (empty($this->server_url)) 248 return; 248 { 249 Easify_Logging::Log("Easify_Generic_Easify_Server.GetJsonFromEasifyServer() - this->server_url is empty, check subscription for username exists!"); 250 return; 251 } 249 252 250 253 if ($key == null) { -
easify-server-woocommerce/trunk/includes/class-easify-wc-plugin-settings-page.php
r2926676 r3275626 1 1 <?php 2 2 /** 3 * Copyright (C) 202 3 Easify Ltd(email:support@easify.co.uk)3 * Copyright (C) 2025 Cambridge Software Development Ltd (t/a Easify) (email:support@easify.co.uk) 4 4 * This program is free software; you can redistribute it and/or 5 5 * modify it under the terms of the GNU General Public License … … 30 30 * 31 31 * @class Easify_WC__Plugin_Settings_Page 32 * @version 4.3 532 * @version 4.39 33 33 * @package easify-woocommerce-connector 34 34 * @author Easify … … 498 498 <?php 499 499 } else { 500 Easify_Logging::Log("class-easify-wc-plugin-settings-page->settings_html_easify_setup_message() - Connection Failure"); 501 500 502 $blurb = "Connection Failure"; 501 503 ?> -
easify-server-woocommerce/trunk/includes/class-easify-wc-send-order-to-easify.php
r2626787 r3275626 1 1 <?php 2 2 /** 3 * Copyright (C) 202 0 Easify Ltd(email:support@easify.co.uk)3 * Copyright (C) 2025 Cambridge Software Development Ltd (t/a Easify) (email:support@easify.co.uk) 4 4 * This program is free software; you can redistribute it and/or 5 5 * modify it under the terms of the GNU General Public License … … 32 32 * 33 33 * @class Easify_WC_Send_Order_To_Easify 34 * @version 4.3 334 * @version 4.39 35 35 * @package easify-woocommerce-connector 36 36 * @author Easify … … 253 253 * value of 1 by mistake, we detect this and ignore it returning the original 254 254 * WooCommerce customer id. 255 * 256 * NOTE: We always return zero if the customer_id is zero because this means the 257 * customer is using a guest account and will have a new customer record in Easify 258 * and won't be matched up with an existing record. 255 259 */ 256 260 private function fixup_customer_id_for_easify() 257 261 { 262 if ($this->woocommerce_order->customer_id == 0){ 263 Easify_Logging::Log( 'Easify_WC_Send_Order_To_Easify.fixup_customer_id_for_easify() Customer is guest so no customer id.'); 264 return 0; 265 } 266 258 267 $website_unique_id = $this->easify_options->get_website_unique_id(); 259 268 -
easify-server-woocommerce/trunk/readme.txt
r3166451 r3275626 4 4 Tags: easify, epos, epos software, stock control software, accounting software, invoicing software, small business software, ecommerce, e-commerce, woothemes, wordpress ecommerce, woocommerce, shopping cart 5 5 Requires at least: 5.0 6 Tested up to: 6. 6.27 Stable tag: 4.3 86 Tested up to: 6.7.2 7 Stable tag: 4.39 8 8 License: GPLv2 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 WC tested up to: 9. 010 WC tested up to: 9.7 11 11 12 12 Connects Easify Business Software to your WooCommerce online shop, … … 100 100 101 101 == Changelog == 102 = 4.39 = 103 * Fixed issue when guest customers checkout on a second site with a Unique Id set. 102 104 = 4.38 = 103 105 * Tested up to WordPress 6.6.2. … … 219 221 220 222 == Upgrade Notice == 221 = 4.3 8=222 * Tested up to WordPress 6.6.2.223 = 4.39 = 224 * Fixed issue when guest customers checkout on a second site with a Unique Id set.
Note: See TracChangeset
for help on using the changeset viewer.