Changeset 3165265
- Timestamp:
- 10/08/2024 09:14:56 PM (18 months ago)
- Location:
- precious-metals-automated-product-pricing-pro
- Files:
-
- 14 added
- 2 edited
-
tags/3.0.6 (added)
-
tags/3.0.6/WooCommerce_Plugin_Nfusion.php (added)
-
tags/3.0.6/includes (added)
-
tags/3.0.6/includes/css (added)
-
tags/3.0.6/includes/css/nfusion-admin.css (added)
-
tags/3.0.6/includes/css/nfusion.css (added)
-
tags/3.0.6/includes/img (added)
-
tags/3.0.6/includes/img/nfusion-icon.svg (added)
-
tags/3.0.6/includes/js (added)
-
tags/3.0.6/includes/js/nfusion-admin.js (added)
-
tags/3.0.6/includes/js/nfusion.js (added)
-
tags/3.0.6/includes/model (added)
-
tags/3.0.6/includes/model/transient.php (added)
-
tags/3.0.6/readme.txt (added)
-
trunk/WooCommerce_Plugin_Nfusion.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
precious-metals-automated-product-pricing-pro/trunk/WooCommerce_Plugin_Nfusion.php
r3133331 r3165265 11 11 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 12 12 13 * Version: 3.0. 513 * Version: 3.0.6 14 14 */ 15 15 … … 23 23 require_once 'includes/model/transient.php'; 24 24 25 define("NFS_CATALOG_PLUGIN_VERSION", "3.0. 5");25 define("NFS_CATALOG_PLUGIN_VERSION", "3.0.6"); 26 26 define("NFS_CATALOG_REMOTE_TIMEOUT_SECONDS", 2); 27 27 define("NFS_CATALOG_DEFAULT_REINDEXING_INTERVAL_MINUTES", 10); 28 28 define("NFS_CATALOG_DEFAULT_PRICE_UPDATE_INTERVAL_SECONDS", 60); 29 define("FEE_EXEMPT_METHODS", array("cod", "cheque", "bacs", 30 "stripe_ach", "stripe_bacs_debit", "stripe_acss_debit", 31 "stripe_au_becs_debit", "stripe_us_bank_account", "stripe_oxxo", 32 "stripe_konbini", "stripe_customer_balance", "coinbase_commerce_gateway")); 29 33 30 34 function nfs_catalog_plugin_tryGetProduct($skus){ … … 596 600 */ 597 601 function is_not_fee_exempt($chosen_payment_method) { 598 return !in_array($chosen_payment_method, array('cod', 'cheque', 'bacs'));602 return !in_array($chosen_payment_method, FEE_EXEMPT_METHODS); 599 603 } 600 604 -
precious-metals-automated-product-pricing-pro/trunk/readme.txt
r3133331 r3165265 7 7 Tested up to: 6.4.2 8 8 Requires at least: 3.5.0 9 Stable tag: 3.0. 59 Stable tag: 3.0.6 10 10 11 11 Automated realtime metals spot and futures data dynamically updates product prices in your store for Gold, Silver, Platinum, and Palladium … … 82 82 83 83 == Changelog == 84 = 3.0.6 = 85 * Account for Stripe based payment methods during processing fee calculation. 86 84 87 = 3.0.5 = 85 88 * Allow decimal values in CC fee
Note: See TracChangeset
for help on using the changeset viewer.