Plugin Directory

Changeset 2782677


Ignore:
Timestamp:
09/10/2022 06:03:30 AM (4 years ago)
Author:
Genoo
Message:

Release 1.7.43

Location:
wpmktgengine-extension-woocommerce
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wpmktgengine-extension-woocommerce/tags/1.7.43/readme.txt

    r2782128 r2782677  
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
    8 Stable tag: 1.7.42
     8Stable tag: 1.7.43
    99Understand how your leads and customers are participating with your ecommerce.
    1010
     
    4343== Changelog ==
    4444
    45 = 1.7.42 =
     45== 1.7.43 ==
     46Fixed issue payload not generated while changing the order status completed into processing in the order.
     47
     48== 1.7.42 ==
     49Fixed Update database button jquery issue.
     50
     51= 1.7.41 =
    4652Added 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.
    4753
  • wpmktgengine-extension-woocommerce/tags/1.7.43/wpmktgengine-woocommerce.php

    r2782128 r2782677  
    66 Author URI: http://www.genoo.com/
    77 Author Email: info@genoo.com
    8  Version: 1.7.42
     8 Version: 1.7.43
    99 License: GPLv2
    1010 WC requires at least: 3.0.0
     
    37183718   
    37193719        $id = get_post_meta($order_id, WPMKTENGINE_ORDER_KEY, true);
     3720       
     3721        $rand = rand();
     3722       
    37203723        $getrenewal = get_post_meta($order_id, '_subscription_renewal', true);
    3721         if (!$getrenewal):
     3724     
     3725           
    37223726            if (function_exists("wcs_get_subscriptions_for_order")):
    37233727                $subscriptions_ids = wcs_get_subscriptions_for_order(
     
    37283732                );
    37293733            endif;
     3734           
    37303735            $order = new \WC_Order($order_id);
    37313736
     
    37923797
    37933798                try {
     3799                    if (!$getrenewal):
    37943800                    $WPME_API->updateCart(
    37953801                        $cartOrder->id,
     
    38023808                        $order_id
    38033809                    );
     3810                      endif;
    38043811                }
    38053812                catch (\Exception $e) {
     
    38253832
    38263833                    if (empty($lead)) {
    3827                         $rand = rand();
    3828 
    3829 
    38303834                        $cartOrder->action = "new cart";
    38313835                        $cartOrder->changed->action = "new cart";
     
    38723876                }
    38733877            }
    3874         endif;
     3878     
    38753879    },
    38763880    10,
  • wpmktgengine-extension-woocommerce/trunk/readme.txt

    r2782128 r2782677  
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
    8 Stable tag: 1.7.42
     8Stable tag: 1.7.43
    99Understand how your leads and customers are participating with your ecommerce.
    1010
     
    4343== Changelog ==
    4444
    45 = 1.7.42 =
     45== 1.7.43 ==
     46Fixed issue payload not generated while changing the order status completed into processing in the order.
     47
     48== 1.7.42 ==
     49Fixed Update database button jquery issue.
     50
     51= 1.7.41 =
    4652Added 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.
    4753
  • wpmktgengine-extension-woocommerce/trunk/wpmktgengine-woocommerce.php

    r2782128 r2782677  
    66 Author URI: http://www.genoo.com/
    77 Author Email: info@genoo.com
    8  Version: 1.7.42
     8 Version: 1.7.43
    99 License: GPLv2
    1010 WC requires at least: 3.0.0
     
    37183718   
    37193719        $id = get_post_meta($order_id, WPMKTENGINE_ORDER_KEY, true);
     3720       
     3721        $rand = rand();
     3722       
    37203723        $getrenewal = get_post_meta($order_id, '_subscription_renewal', true);
    3721         if (!$getrenewal):
     3724     
     3725           
    37223726            if (function_exists("wcs_get_subscriptions_for_order")):
    37233727                $subscriptions_ids = wcs_get_subscriptions_for_order(
     
    37283732                );
    37293733            endif;
     3734           
    37303735            $order = new \WC_Order($order_id);
    37313736
     
    37923797
    37933798                try {
     3799                    if (!$getrenewal):
    37943800                    $WPME_API->updateCart(
    37953801                        $cartOrder->id,
     
    38023808                        $order_id
    38033809                    );
     3810                      endif;
    38043811                }
    38053812                catch (\Exception $e) {
     
    38253832
    38263833                    if (empty($lead)) {
    3827                         $rand = rand();
    3828 
    3829 
    38303834                        $cartOrder->action = "new cart";
    38313835                        $cartOrder->changed->action = "new cart";
     
    38723876                }
    38733877            }
    3874         endif;
     3878     
    38753879    },
    38763880    10,
Note: See TracChangeset for help on using the changeset viewer.