Changeset 2782120
- Timestamp:
- 09/08/2022 06:08:49 PM (4 years ago)
- Location:
- wpmktgengine-extension-woocommerce
- Files:
-
- 2 added
- 6 edited
- 1 copied
-
tags/1.7.41 (copied) (copied from wpmktgengine-extension-woocommerce/trunk)
-
tags/1.7.41/includes/activitystream.js (modified) (1 diff)
-
tags/1.7.41/includes/orderqueuescript.js (added)
-
tags/1.7.41/readme.txt (modified) (1 diff)
-
tags/1.7.41/wpmktgengine-woocommerce.php (modified) (7 diffs)
-
trunk/includes/activitystream.js (modified) (1 diff)
-
trunk/includes/orderqueuescript.js (added)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wpmktgengine-woocommerce.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpmktgengine-extension-woocommerce/tags/1.7.41/includes/activitystream.js
r2782022 r2782120 1 1 jQuery(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 () { 14 4 var ajaxwoocommerceurl = jQuery(".admininsertvalue").val(); 15 5 jQuery.ajax({ -
wpmktgengine-extension-woocommerce/tags/1.7.41/readme.txt
r2782022 r2782120 44 44 == Changelog == 45 45 46 = 1.7.4 0=46 = 1.7.41 = 47 47 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. 48 48 -
wpmktgengine-extension-woocommerce/tags/1.7.41/wpmktgengine-woocommerce.php
r2782022 r2782120 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 1.7.4 08 Version: 1.7.41 9 9 License: GPLv2 10 10 WC requires at least: 3.0.0 … … 466 466 ); 467 467 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( 481 469 "data_tables", 482 470 plugins_url( … … 488 476 ) 489 477 ); 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 490 491 wp_enqueue_script( 491 492 "bootsrapjs", … … 512 513 plugins_url( 513 514 "/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", 514 526 __FILE__, 515 527 [], … … 792 804 ); 793 805 806 if(!empty($result)){ 794 807 foreach ($result as $results) { 795 808 $nestedData = []; … … 820 833 821 834 wp_die(); 835 } 822 836 } 823 837 … … 6041 6055 6042 6056 $subscription_streamtypes = [ 6043 "subscription on hold",6057 "subscription on hold", 6044 6058 "subscription reactivated", 6045 6059 "Subscription Pending Cancellation", 6046 6060 "subscription completed", 6061 "cancelled order", 6062 "subscription expired", 6047 6063 "order refund full", 6048 "order refund partial", 6049 "cancelled order", 6064 "completed", 6065 "order on hold", 6066 "pending payment" 6050 6067 ]; 6051 6068 -
wpmktgengine-extension-woocommerce/trunk/includes/activitystream.js
r2782022 r2782120 1 1 jQuery(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 () { 14 4 var ajaxwoocommerceurl = jQuery(".admininsertvalue").val(); 15 5 jQuery.ajax({ -
wpmktgengine-extension-woocommerce/trunk/readme.txt
r2782022 r2782120 44 44 == Changelog == 45 45 46 = 1.7.4 0=46 = 1.7.41 = 47 47 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. 48 48 -
wpmktgengine-extension-woocommerce/trunk/wpmktgengine-woocommerce.php
r2782022 r2782120 6 6 Author URI: http://www.genoo.com/ 7 7 Author Email: info@genoo.com 8 Version: 1.7.4 08 Version: 1.7.41 9 9 License: GPLv2 10 10 WC requires at least: 3.0.0 … … 466 466 ); 467 467 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( 481 469 "data_tables", 482 470 plugins_url( … … 488 476 ) 489 477 ); 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 490 491 wp_enqueue_script( 491 492 "bootsrapjs", … … 512 513 plugins_url( 513 514 "/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", 514 526 __FILE__, 515 527 [], … … 792 804 ); 793 805 806 if(!empty($result)){ 794 807 foreach ($result as $results) { 795 808 $nestedData = []; … … 820 833 821 834 wp_die(); 835 } 822 836 } 823 837 … … 6041 6055 6042 6056 $subscription_streamtypes = [ 6043 "subscription on hold",6057 "subscription on hold", 6044 6058 "subscription reactivated", 6045 6059 "Subscription Pending Cancellation", 6046 6060 "subscription completed", 6061 "cancelled order", 6062 "subscription expired", 6047 6063 "order refund full", 6048 "order refund partial", 6049 "cancelled order", 6064 "completed", 6065 "order on hold", 6066 "pending payment" 6050 6067 ]; 6051 6068
Note: See TracChangeset
for help on using the changeset viewer.