Changeset 1550635
- Timestamp:
- 12/09/2016 02:01:55 PM (9 years ago)
- Location:
- woocommerce-basic-ordernumbers
- Files:
-
- 3 edited
- 14 copied
-
tags/1.3.7 (copied) (copied from woocommerce-basic-ordernumbers/trunk)
-
tags/1.3.7/assets/css/opentools-updatecheck.css (copied) (copied from woocommerce-basic-ordernumbers/trunk/assets/css/opentools-updatecheck.css)
-
tags/1.3.7/assets/js/opentools-updatecheck.js (copied) (copied from woocommerce-basic-ordernumbers/trunk/assets/js/opentools-updatecheck.js) (1 diff)
-
tags/1.3.7/library/css/index.html (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/css/index.html)
-
tags/1.3.7/library/css/ordernumber.css (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/css/ordernumber.css)
-
tags/1.3.7/library/images/index.html (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/images/index.html)
-
tags/1.3.7/library/index.html (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/index.html)
-
tags/1.3.7/library/js/index.html (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/js/index.html)
-
tags/1.3.7/library/js/ordernumber.js (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/js/ordernumber.js)
-
tags/1.3.7/library/ordernumber_helper.php (copied) (copied from woocommerce-basic-ordernumbers/trunk/library/ordernumber_helper.php)
-
tags/1.3.7/ordernumber_helper_woocommerce.php (copied) (copied from woocommerce-basic-ordernumbers/trunk/ordernumber_helper_woocommerce.php)
-
tags/1.3.7/ordernumbers_woocommerce_basic.php (copied) (copied from woocommerce-basic-ordernumbers/trunk/ordernumbers_woocommerce_basic.php)
-
tags/1.3.7/readme.txt (copied) (copied from woocommerce-basic-ordernumbers/trunk/readme.txt) (2 diffs)
-
tags/1.3.7/woocommerce-basic-ordernumbers.php (copied) (copied from woocommerce-basic-ordernumbers/trunk/woocommerce-basic-ordernumbers.php) (2 diffs)
-
trunk/assets/js/opentools-updatecheck.js (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/woocommerce-basic-ordernumbers.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-basic-ordernumbers/tags/1.3.7/assets/js/opentools-updatecheck.js
r1459453 r1550635 6 6 var slug = jQuery(btn).data("slug"); 7 7 var nonce = jQuery(btn).data("nonce"); 8 var ajaxargs = { 9 type: "POST", 10 url: ajaxurl, 11 data: { 12 action: 'getUpdateCredentialsRow_'+slug, 13 slug: slug, 14 _ajax_nonce: nonce 15 }, 16 success: function ( json ) { 17 jQuery(btn).closest('tr').after(json['row']); 18 }, 19 error: function() { }, 20 complete: function() { }, 21 }; 22 jQuery.ajax(ajaxargs); 8 9 var credentialRow = jQuery(btn).closest('table').find('tr#'+slug+'-credentials'); 10 if (credentialRow.length > 0) { 11 jQuery(credentialRow).fadeOut(1000, function() { jQuery(this).remove(); }); 12 } else { 13 var ajaxargs = { 14 type: "POST", 15 url: ajaxurl, 16 data: { 17 action: 'getUpdateCredentialsRow_'+slug, 18 slug: slug, 19 _ajax_nonce: nonce 20 }, 21 success: function ( json ) { 22 jQuery(btn).closest('tr').after(json['row']); 23 }, 24 error: function() { }, 25 complete: function() { }, 26 }; 27 jQuery.ajax(ajaxargs); 28 } 23 29 return false; 24 30 }; -
woocommerce-basic-ordernumbers/tags/1.3.7/readme.txt
r1459453 r1550635 4 4 Tags: WooCommerce, Order numbers, orders 5 5 Requires at least: 4.0 6 Tested up to: 4. 57 Stable tag: 1.3. 66 Tested up to: 4.7 7 Stable tag: 1.3.7 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 79 79 == Changelog == 80 80 81 = 1.3.7 = 82 * Add support for PayPal payment method 83 * Add variables: 84 * [UserRoles] (list of all WordPress user rules for the customer) 85 * [Shipping] (shipping costs) 86 * [ShippingMethods] (user-readable string) 87 * [ShippingMethodIDs] (internal, unique IDs for shiping methods, like shipping_by_rules:31) 88 * [ShippingMethodTypes] (shipping plugin names) 89 * [ShippingInstanceIDs] (unique identifiers for shipping instance when using zones) 90 81 91 = 1.3.6 = 82 92 * Fix order number display for old orders -
woocommerce-basic-ordernumbers/tags/1.3.7/woocommerce-basic-ordernumbers.php
r1459453 r1550635 4 4 * Plugin URI: http://open-tools.net/woocommerce/advanced-ordernumbers-for-woocommerce.html 5 5 * Description: Configure WooCommerce ordernumbers to have a running counter and arbitrary, fixed text (prefix / postfix). 6 * Version: 1.3. 66 * Version: 1.3.7 7 7 * Author: Open Tools 8 8 * Author URI: http://open-tools.net … … 11 11 * Network: true 12 12 * WC requires at least: 2.2 13 * WC tested up to: 2. 513 * WC tested up to: 2.6 14 14 */ 15 15 -
woocommerce-basic-ordernumbers/trunk/assets/js/opentools-updatecheck.js
r1459453 r1550635 6 6 var slug = jQuery(btn).data("slug"); 7 7 var nonce = jQuery(btn).data("nonce"); 8 var ajaxargs = { 9 type: "POST", 10 url: ajaxurl, 11 data: { 12 action: 'getUpdateCredentialsRow_'+slug, 13 slug: slug, 14 _ajax_nonce: nonce 15 }, 16 success: function ( json ) { 17 jQuery(btn).closest('tr').after(json['row']); 18 }, 19 error: function() { }, 20 complete: function() { }, 21 }; 22 jQuery.ajax(ajaxargs); 8 9 var credentialRow = jQuery(btn).closest('table').find('tr#'+slug+'-credentials'); 10 if (credentialRow.length > 0) { 11 jQuery(credentialRow).fadeOut(1000, function() { jQuery(this).remove(); }); 12 } else { 13 var ajaxargs = { 14 type: "POST", 15 url: ajaxurl, 16 data: { 17 action: 'getUpdateCredentialsRow_'+slug, 18 slug: slug, 19 _ajax_nonce: nonce 20 }, 21 success: function ( json ) { 22 jQuery(btn).closest('tr').after(json['row']); 23 }, 24 error: function() { }, 25 complete: function() { }, 26 }; 27 jQuery.ajax(ajaxargs); 28 } 23 29 return false; 24 30 }; -
woocommerce-basic-ordernumbers/trunk/readme.txt
r1459453 r1550635 4 4 Tags: WooCommerce, Order numbers, orders 5 5 Requires at least: 4.0 6 Tested up to: 4. 57 Stable tag: 1.3. 66 Tested up to: 4.7 7 Stable tag: 1.3.7 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl.html … … 79 79 == Changelog == 80 80 81 = 1.3.7 = 82 * Add support for PayPal payment method 83 * Add variables: 84 * [UserRoles] (list of all WordPress user rules for the customer) 85 * [Shipping] (shipping costs) 86 * [ShippingMethods] (user-readable string) 87 * [ShippingMethodIDs] (internal, unique IDs for shiping methods, like shipping_by_rules:31) 88 * [ShippingMethodTypes] (shipping plugin names) 89 * [ShippingInstanceIDs] (unique identifiers for shipping instance when using zones) 90 81 91 = 1.3.6 = 82 92 * Fix order number display for old orders -
woocommerce-basic-ordernumbers/trunk/woocommerce-basic-ordernumbers.php
r1459453 r1550635 4 4 * Plugin URI: http://open-tools.net/woocommerce/advanced-ordernumbers-for-woocommerce.html 5 5 * Description: Configure WooCommerce ordernumbers to have a running counter and arbitrary, fixed text (prefix / postfix). 6 * Version: 1.3. 66 * Version: 1.3.7 7 7 * Author: Open Tools 8 8 * Author URI: http://open-tools.net … … 11 11 * Network: true 12 12 * WC requires at least: 2.2 13 * WC tested up to: 2. 513 * WC tested up to: 2.6 14 14 */ 15 15
Note: See TracChangeset
for help on using the changeset viewer.