Changeset 3131464
- Timestamp:
- 08/06/2024 09:11:50 AM (19 months ago)
- Location:
- professional-payment-portal-for-woocommerce
- Files:
-
- 30 added
- 1 deleted
- 3 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/css (added)
-
tags/1.0.2/assets/css/fastcheckout-style.css (added)
-
tags/1.0.2/assets/images (added)
-
tags/1.0.2/assets/images/fastcheckout.png (added)
-
tags/1.0.2/assets/images/ppp4woo_ideal.png (added)
-
tags/1.0.2/assets/images/ppp4woo_ideal.svg (added)
-
tags/1.0.2/assets/js (added)
-
tags/1.0.2/assets/js/fastcheckout-script.js (added)
-
tags/1.0.2/assets/js/ideal.js (added)
-
tags/1.0.2/blocks (added)
-
tags/1.0.2/blocks/ideal.php (added)
-
tags/1.0.2/cache (added)
-
tags/1.0.2/cache/index.php (added)
-
tags/1.0.2/controllers (added)
-
tags/1.0.2/controllers/ppp4woo-controller.php (added)
-
tags/1.0.2/gateways (added)
-
tags/1.0.2/gateways/abstract.php (added)
-
tags/1.0.2/gateways/ideal.php (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/functions.php (added)
-
tags/1.0.2/index.php (added)
-
tags/1.0.2/professional-payment-portal-for-woocommerce.php (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/translations (added)
-
tags/1.0.2/translations/ppp-for-woo-en.mo (added)
-
tags/1.0.2/translations/ppp-for-woo-en.po (added)
-
tags/1.0.2/translations/ppp-for-woo-nl.mo (added)
-
tags/1.0.2/translations/ppp-for-woo-nl.po (added)
-
trunk/gateways/abstract.php (modified) (2 diffs)
-
trunk/gateways/ideal_fast.php (deleted)
-
trunk/professional-payment-portal-for-woocommerce.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
professional-payment-portal-for-woocommerce/trunk/gateways/abstract.php
r3131048 r3131464 164 164 // Order amount in Cents 165 165 $fOrderAmount = $aOrderData['total']; 166 $fOrderAmountShipping = $aOrderData['shipping_total'];167 166 $sCurrencyCode = $aOrderData['currency']; 168 167 … … 178 177 $aRequest['currency'] = $sCurrencyCode; 179 178 $aRequest['amount'] = $fOrderAmount; 180 $aRequest['amount_shipping'] = $fOrderAmountShipping;181 179 182 180 $aRequest['return_url'] = $sReturnUrl; -
professional-payment-portal-for-woocommerce/trunk/professional-payment-portal-for-woocommerce.php
r3131048 r3131464 11 11 * Plugin URI: https://bitbucket.org/codebrainbv/ppp-woocommerce/ 12 12 * Description: Accept payments through the Professional Payment Portal 13 * Version: 1.0. 113 * Version: 1.0.2 14 14 * Requires at least: 6.4 15 * Tested up to: 6. 4.215 * Tested up to: 6.6.1 16 16 * Requires PHP: 7.4 17 * WC tested up to: 8.817 * WC tested up to: 9.1.4 18 18 * Author: CodeBrain BV 19 19 * Author URI: https://www.codebrain.nl/ … … 103 103 include PPP4WOO_ROOT_PATH.'gateways/abstract.php'; 104 104 include PPP4WOO_ROOT_PATH.'gateways/ideal.php'; 105 include PPP4WOO_ROOT_PATH.'gateways/ideal_fast.php';105 // include PPP4WOO_ROOT_PATH.'gateways/ideal_fast.php'; 106 106 } 107 107 … … 111 111 { 112 112 $gateways[] = 'ppp4woo_ideal'; 113 $gateways[] = 'ppp4woo_ideal_fast';113 // $gateways[] = 'ppp4woo_ideal_fast'; 114 114 115 115 return $gateways; -
professional-payment-portal-for-woocommerce/trunk/readme.txt
r3131056 r3131464 2 2 Contributors: codebrainbv 3 3 Tags: professional, rabobank, payment, ideal 2, woocommerce 4 Requires at least: 5.95 Tested up to: 6.6 6 Stable tag: 1.0. 14 Requires at least: 6.4 5 Tested up to: 6.6.1 6 Stable tag: 1.0.2 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 73 73 == Changelog == 74 74 75 = 1.0.2 = 76 * Removed fast checkout because it was causing issues for merchants, will reintroduce when fixed. 77 * Fixed issue with the shipping cost 75 78 76 79 == Upgrade Notice ==
Note: See TracChangeset
for help on using the changeset viewer.