Changeset 2782677
- Timestamp:
- 09/10/2022 06:03:30 AM (4 years ago)
- Location:
- wpmktgengine-extension-woocommerce
- Files:
-
- 4 edited
- 1 copied
-
tags/1.7.43 (copied) (copied from wpmktgengine-extension-woocommerce/trunk)
-
tags/1.7.43/readme.txt (modified) (2 diffs)
-
tags/1.7.43/wpmktgengine-woocommerce.php (modified) (7 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wpmktgengine-woocommerce.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpmktgengine-extension-woocommerce/tags/1.7.43/readme.txt
r2782128 r2782677 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 Stable tag: 1.7.4 28 Stable tag: 1.7.43 9 9 Understand how your leads and customers are participating with your ecommerce. 10 10 … … 43 43 == Changelog == 44 44 45 = 1.7.42 = 45 == 1.7.43 == 46 Fixed issue payload not generated while changing the order status completed into processing in the order. 47 48 == 1.7.42 == 49 Fixed Update database button jquery issue. 50 51 = 1.7.41 = 46 52 Added Order Queue if order fails to find Genoo API (i.e. if it's down) and will retry the push to Genoo account on regular increment. Cron job is set to run every 5 mniutes by default, and can be edited at Settings > eCommerce tab in Genoo plugin. Also added ability to push individual orders across if they have not yet synced with Genoo account. Go to Edit order and send to genoo button should be available. 47 53 -
wpmktgengine-extension-woocommerce/tags/1.7.43/wpmktgengine-woocommerce.php
r2782128 r2782677 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 1.7.4 28 Version: 1.7.43 9 9 License: GPLv2 10 10 WC requires at least: 3.0.0 … … 3718 3718 3719 3719 $id = get_post_meta($order_id, WPMKTENGINE_ORDER_KEY, true); 3720 3721 $rand = rand(); 3722 3720 3723 $getrenewal = get_post_meta($order_id, '_subscription_renewal', true); 3721 if (!$getrenewal): 3724 3725 3722 3726 if (function_exists("wcs_get_subscriptions_for_order")): 3723 3727 $subscriptions_ids = wcs_get_subscriptions_for_order( … … 3728 3732 ); 3729 3733 endif; 3734 3730 3735 $order = new \WC_Order($order_id); 3731 3736 … … 3792 3797 3793 3798 try { 3799 if (!$getrenewal): 3794 3800 $WPME_API->updateCart( 3795 3801 $cartOrder->id, … … 3802 3808 $order_id 3803 3809 ); 3810 endif; 3804 3811 } 3805 3812 catch (\Exception $e) { … … 3825 3832 3826 3833 if (empty($lead)) { 3827 $rand = rand();3828 3829 3830 3834 $cartOrder->action = "new cart"; 3831 3835 $cartOrder->changed->action = "new cart"; … … 3872 3876 } 3873 3877 } 3874 endif;3878 3875 3879 }, 3876 3880 10, -
wpmktgengine-extension-woocommerce/trunk/readme.txt
r2782128 r2782677 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 Stable tag: 1.7.4 28 Stable tag: 1.7.43 9 9 Understand how your leads and customers are participating with your ecommerce. 10 10 … … 43 43 == Changelog == 44 44 45 = 1.7.42 = 45 == 1.7.43 == 46 Fixed issue payload not generated while changing the order status completed into processing in the order. 47 48 == 1.7.42 == 49 Fixed Update database button jquery issue. 50 51 = 1.7.41 = 46 52 Added Order Queue if order fails to find Genoo API (i.e. if it's down) and will retry the push to Genoo account on regular increment. Cron job is set to run every 5 mniutes by default, and can be edited at Settings > eCommerce tab in Genoo plugin. Also added ability to push individual orders across if they have not yet synced with Genoo account. Go to Edit order and send to genoo button should be available. 47 53 -
wpmktgengine-extension-woocommerce/trunk/wpmktgengine-woocommerce.php
r2782128 r2782677 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 1.7.4 28 Version: 1.7.43 9 9 License: GPLv2 10 10 WC requires at least: 3.0.0 … … 3718 3718 3719 3719 $id = get_post_meta($order_id, WPMKTENGINE_ORDER_KEY, true); 3720 3721 $rand = rand(); 3722 3720 3723 $getrenewal = get_post_meta($order_id, '_subscription_renewal', true); 3721 if (!$getrenewal): 3724 3725 3722 3726 if (function_exists("wcs_get_subscriptions_for_order")): 3723 3727 $subscriptions_ids = wcs_get_subscriptions_for_order( … … 3728 3732 ); 3729 3733 endif; 3734 3730 3735 $order = new \WC_Order($order_id); 3731 3736 … … 3792 3797 3793 3798 try { 3799 if (!$getrenewal): 3794 3800 $WPME_API->updateCart( 3795 3801 $cartOrder->id, … … 3802 3808 $order_id 3803 3809 ); 3810 endif; 3804 3811 } 3805 3812 catch (\Exception $e) { … … 3825 3832 3826 3833 if (empty($lead)) { 3827 $rand = rand();3828 3829 3830 3834 $cartOrder->action = "new cart"; 3831 3835 $cartOrder->changed->action = "new cart"; … … 3872 3876 } 3873 3877 } 3874 endif;3878 3875 3879 }, 3876 3880 10,
Note: See TracChangeset
for help on using the changeset viewer.