Plugin Directory

Changeset 2782120


Ignore:
Timestamp:
09/08/2022 06:08:49 PM (4 years ago)
Author:
Genoo
Message:

Release 1.7.41

Location:
wpmktgengine-extension-woocommerce
Files:
2 added
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wpmktgengine-extension-woocommerce/tags/1.7.41/includes/activitystream.js

    r2782022 r2782120  
    11jQuery(document).ready(function(){
    2   jQuery('#failedorderstable').dataTable({
    3         "Processing": true,
    4         "ServerSide": true,
    5          "ajax": ajax_url,
    6          'aoColumnDefs': [{
    7       'bSortable': false,
    8         'aTargets': [-1] /* 1st one, start by the right */
    9     }],
    10          });
    11          
    12        
    13     jQuery(document).on("click", ".clickoption", function () {
     2
     3   jQuery(document).on("click", ".clickoption", function () {
    144    var ajaxwoocommerceurl = jQuery(".admininsertvalue").val();
    155    jQuery.ajax({
  • wpmktgengine-extension-woocommerce/tags/1.7.41/readme.txt

    r2782022 r2782120  
    4444== Changelog ==
    4545
    46 = 1.7.40 =
     46= 1.7.41 =
    4747Added 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.
    4848
  • wpmktgengine-extension-woocommerce/tags/1.7.41/wpmktgengine-woocommerce.php

    r2782022 r2782120  
    66 Author URI: http://www.genoo.com/
    77 Author Email: info@genoo.com
    8  Version: 1.7.40
     8 Version: 1.7.41
    99 License: GPLv2
    1010 WC requires at least: 3.0.0
     
    466466                );
    467467
    468                 if ($_GET["page"] == "WPMKTENGINE") {
    469                     wp_enqueue_style(
    470                         "tabstyle",
    471 
    472                         plugins_url("/includes/tab.css", __FILE__)
    473                     );
    474                     wp_enqueue_style(
    475                         "bootsrapcs",
    476 
    477                         plugins_url("/includes/bootsrap.css", __FILE__)
    478                     );
    479 
    480                     wp_enqueue_script(
     468                 wp_enqueue_script(
    481469                        "data_tables",
    482470                        plugins_url(
     
    488476                    )
    489477                    );
     478                if ($_GET["page"] == "WPMKTENGINE") {
     479                    wp_enqueue_style(
     480                        "tabstyle",
     481
     482                        plugins_url("/includes/tab.css", __FILE__)
     483                    );
     484                    wp_enqueue_style(
     485                        "bootsrapcs",
     486
     487                        plugins_url("/includes/bootsrap.css", __FILE__)
     488                    );
     489
     490                   
    490491                    wp_enqueue_script(
    491492                        "bootsrapjs",
     
    512513                        plugins_url(
    513514                        "/includes/tab.js",
     515                        __FILE__,
     516                    [],
     517                        "1.0.0",
     518                        true
     519                    )
     520                    );
     521                 
     522                     wp_enqueue_script(
     523                        "order_queue_script",
     524                        plugins_url(
     525                        "/includes/orderqueuescript.js",
    514526                        __FILE__,
    515527                    [],
     
    792804                );
    793805
     806                  if(!empty($result)){
    794807                foreach ($result as $results) {
    795808                    $nestedData = [];
     
    820833
    821834                wp_die();
     835                  }
    822836            }
    823837
     
    60416055
    60426056                $subscription_streamtypes = [
    6043                     "subscription on hold",
     6057                     "subscription on hold",
    60446058                    "subscription reactivated",
    60456059                    "Subscription Pending Cancellation",
    60466060                    "subscription completed",
     6061                    "cancelled order",
     6062                    "subscription expired",
    60476063                    "order refund full",
    6048                     "order refund partial",
    6049                     "cancelled order",
     6064                    "completed",
     6065                    "order on hold",
     6066                    "pending payment"
    60506067                ];
    60516068
  • wpmktgengine-extension-woocommerce/trunk/includes/activitystream.js

    r2782022 r2782120  
    11jQuery(document).ready(function(){
    2   jQuery('#failedorderstable').dataTable({
    3         "Processing": true,
    4         "ServerSide": true,
    5          "ajax": ajax_url,
    6          'aoColumnDefs': [{
    7       'bSortable': false,
    8         'aTargets': [-1] /* 1st one, start by the right */
    9     }],
    10          });
    11          
    12        
    13     jQuery(document).on("click", ".clickoption", function () {
     2
     3   jQuery(document).on("click", ".clickoption", function () {
    144    var ajaxwoocommerceurl = jQuery(".admininsertvalue").val();
    155    jQuery.ajax({
  • wpmktgengine-extension-woocommerce/trunk/readme.txt

    r2782022 r2782120  
    4444== Changelog ==
    4545
    46 = 1.7.40 =
     46= 1.7.41 =
    4747Added 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.
    4848
  • wpmktgengine-extension-woocommerce/trunk/wpmktgengine-woocommerce.php

    r2782022 r2782120  
    66 Author URI: http://www.genoo.com/
    77 Author Email: info@genoo.com
    8  Version: 1.7.40
     8 Version: 1.7.41
    99 License: GPLv2
    1010 WC requires at least: 3.0.0
     
    466466                );
    467467
    468                 if ($_GET["page"] == "WPMKTENGINE") {
    469                     wp_enqueue_style(
    470                         "tabstyle",
    471 
    472                         plugins_url("/includes/tab.css", __FILE__)
    473                     );
    474                     wp_enqueue_style(
    475                         "bootsrapcs",
    476 
    477                         plugins_url("/includes/bootsrap.css", __FILE__)
    478                     );
    479 
    480                     wp_enqueue_script(
     468                 wp_enqueue_script(
    481469                        "data_tables",
    482470                        plugins_url(
     
    488476                    )
    489477                    );
     478                if ($_GET["page"] == "WPMKTENGINE") {
     479                    wp_enqueue_style(
     480                        "tabstyle",
     481
     482                        plugins_url("/includes/tab.css", __FILE__)
     483                    );
     484                    wp_enqueue_style(
     485                        "bootsrapcs",
     486
     487                        plugins_url("/includes/bootsrap.css", __FILE__)
     488                    );
     489
     490                   
    490491                    wp_enqueue_script(
    491492                        "bootsrapjs",
     
    512513                        plugins_url(
    513514                        "/includes/tab.js",
     515                        __FILE__,
     516                    [],
     517                        "1.0.0",
     518                        true
     519                    )
     520                    );
     521                 
     522                     wp_enqueue_script(
     523                        "order_queue_script",
     524                        plugins_url(
     525                        "/includes/orderqueuescript.js",
    514526                        __FILE__,
    515527                    [],
     
    792804                );
    793805
     806                  if(!empty($result)){
    794807                foreach ($result as $results) {
    795808                    $nestedData = [];
     
    820833
    821834                wp_die();
     835                  }
    822836            }
    823837
     
    60416055
    60426056                $subscription_streamtypes = [
    6043                     "subscription on hold",
     6057                     "subscription on hold",
    60446058                    "subscription reactivated",
    60456059                    "Subscription Pending Cancellation",
    60466060                    "subscription completed",
     6061                    "cancelled order",
     6062                    "subscription expired",
    60476063                    "order refund full",
    6048                     "order refund partial",
    6049                     "cancelled order",
     6064                    "completed",
     6065                    "order on hold",
     6066                    "pending payment"
    60506067                ];
    60516068
Note: See TracChangeset for help on using the changeset viewer.