Changeset 3316454
- Timestamp:
- 06/23/2025 04:05:46 PM (9 months ago)
- Location:
- montonio-for-woocommerce
- Files:
-
- 16 edited
- 1 copied
-
tags/9.0.4 (copied) (copied from montonio-for-woocommerce/trunk)
-
tags/9.0.4/assets/js/montonio-embedded-blik.js (modified) (1 diff)
-
tags/9.0.4/assets/js/montonio-inline-blik.js (modified) (2 diffs)
-
tags/9.0.4/assets/js/montonio-inline-card.js (modified) (2 diffs)
-
tags/9.0.4/includes/payment/class-wc-montonio-api.php (modified) (1 diff)
-
tags/9.0.4/includes/payment/payment-methods/class-wc-montonio-payments.php (modified) (1 diff)
-
tags/9.0.4/languages/montonio-for-woocommerce.pot (modified) (2 diffs)
-
tags/9.0.4/montonio.php (modified) (2 diffs)
-
tags/9.0.4/readme.txt (modified) (3 diffs)
-
trunk/assets/js/montonio-embedded-blik.js (modified) (1 diff)
-
trunk/assets/js/montonio-inline-blik.js (modified) (2 diffs)
-
trunk/assets/js/montonio-inline-card.js (modified) (2 diffs)
-
trunk/includes/payment/class-wc-montonio-api.php (modified) (1 diff)
-
trunk/includes/payment/payment-methods/class-wc-montonio-payments.php (modified) (1 diff)
-
trunk/languages/montonio-for-woocommerce.pot (modified) (2 diffs)
-
trunk/montonio.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
montonio-for-woocommerce/tags/9.0.4/assets/js/montonio-embedded-blik.js
r3283410 r3316454 41 41 window.embeddedPayment = new Montonio.Checkout.Blik({ 42 42 locale: wc_montonio_embedded_blik.locale, 43 environment: wc_montonio_embedded_blik. sandbox_mode === 'yes' ? 'sandbox' : 'production',43 environment: wc_montonio_embedded_blik.test_mode === 'yes' ? 'sandbox' : 'production', 44 44 targetElement: targetElement.get(0), 45 45 }); -
montonio-for-woocommerce/tags/9.0.4/assets/js/montonio-inline-blik.js
r3270541 r3316454 40 40 'action': 'get_payment_intent', 41 41 'method': 'blik', 42 'sandbox_mode': params. sandbox_mode,42 'sandbox_mode': params.test_mode, 43 43 'nonce': params.nonce, 44 44 }; … … 114 114 async function confirmPayment() { 115 115 try { 116 const result = await embeddedPayment.confirmPayment(params. sandbox_mode === 'yes');116 const result = await embeddedPayment.confirmPayment(params.test_mode === 'yes'); 117 117 118 118 window.location.replace(result.returnUrl); -
montonio-for-woocommerce/tags/9.0.4/assets/js/montonio-inline-card.js
r3270541 r3316454 41 41 'action': 'get_payment_intent', 42 42 'method': 'cardPayments', 43 'sandbox_mode': params. sandbox_mode,43 'sandbox_mode': params.test_mode, 44 44 'nonce': params.nonce 45 45 }; … … 106 106 async function confirmPayment() { 107 107 try { 108 const result = await embeddedPayment.confirmPayment(params. sandbox_mode === 'yes');108 const result = await embeddedPayment.confirmPayment(params.test_mode === 'yes'); 109 109 110 110 window.location.replace(result.returnUrl); -
montonio-for-woocommerce/tags/9.0.4/includes/payment/class-wc-montonio-api.php
r3315103 r3316454 55 55 const MONTONIO_API_URL = 'https://stargate.montonio.com/api'; 56 56 57 public function __construct( $sandbox_mode ) {57 public function __construct( $sandbox_mode = 'no' ) { 58 58 $this->sandbox_mode = $sandbox_mode; 59 59 -
montonio-for-woocommerce/tags/9.0.4/includes/payment/payment-methods/class-wc-montonio-payments.php
r3315103 r3316454 301 301 public function sync_banks( $settings ) { 302 302 try { 303 $montonio_api = new WC_Montonio_API( $settings['test_mode'] );303 $montonio_api = new WC_Montonio_API( $settings['test_mode'] ?? 'no' ); 304 304 $response = json_decode( $montonio_api->fetch_payment_methods() ); 305 305 -
montonio-for-woocommerce/tags/9.0.4/languages/montonio-for-woocommerce.pot
r3315103 r3316454 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Montonio for WooCommerce 9.0. 2\n"5 "Project-Id-Version: Montonio for WooCommerce 9.0.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/montonio-for-woocommerce\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-06-2 0T09:45:46+00:00\n"12 "POT-Creation-Date: 2025-06-23T15:04:41+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
montonio-for-woocommerce/tags/9.0.4/montonio.php
r3315137 r3316454 4 4 * Plugin URI: https://www.montonio.com 5 5 * Description: All-in-one plug & play checkout solution 6 * Version: 9.0. 36 * Version: 9.0.4 7 7 * Author: Montonio 8 8 * Author URI: https://www.montonio.com … … 21 21 } 22 22 23 define( 'WC_MONTONIO_PLUGIN_VERSION', '9.0. 3' );23 define( 'WC_MONTONIO_PLUGIN_VERSION', '9.0.4' ); 24 24 define( 'WC_MONTONIO_PLUGIN_URL', plugins_url( '', __FILE__ ) ); 25 25 define( 'WC_MONTONIO_PLUGIN_PATH', dirname( __FILE__ ) ); -
montonio-for-woocommerce/tags/9.0.4/readme.txt
r3315137 r3316454 1 1 === Montonio for WooCommerce === 2 Version: 9.0. 32 Version: 9.0.4 3 3 Date: 2019-09-04 4 4 Contributors: Montonio … … 6 6 Requires at least: 5.0 7 7 Tested up to: 6.8 8 Stable tag: 9.0. 38 Stable tag: 9.0.4 9 9 Requires PHP: 7.0 10 10 Minimum requirements: WooCommerce 3.2 or greater … … 136 136 137 137 == Changelog == 138 = 9.0.4 = 139 * Fix - Embedded payment fields not working properly in checkout 140 138 141 = 9.0.3 = 139 142 * Fix - Payment test mode badge now displays correctly in admin settings page -
montonio-for-woocommerce/trunk/assets/js/montonio-embedded-blik.js
r3283410 r3316454 41 41 window.embeddedPayment = new Montonio.Checkout.Blik({ 42 42 locale: wc_montonio_embedded_blik.locale, 43 environment: wc_montonio_embedded_blik. sandbox_mode === 'yes' ? 'sandbox' : 'production',43 environment: wc_montonio_embedded_blik.test_mode === 'yes' ? 'sandbox' : 'production', 44 44 targetElement: targetElement.get(0), 45 45 }); -
montonio-for-woocommerce/trunk/assets/js/montonio-inline-blik.js
r3270541 r3316454 40 40 'action': 'get_payment_intent', 41 41 'method': 'blik', 42 'sandbox_mode': params. sandbox_mode,42 'sandbox_mode': params.test_mode, 43 43 'nonce': params.nonce, 44 44 }; … … 114 114 async function confirmPayment() { 115 115 try { 116 const result = await embeddedPayment.confirmPayment(params. sandbox_mode === 'yes');116 const result = await embeddedPayment.confirmPayment(params.test_mode === 'yes'); 117 117 118 118 window.location.replace(result.returnUrl); -
montonio-for-woocommerce/trunk/assets/js/montonio-inline-card.js
r3270541 r3316454 41 41 'action': 'get_payment_intent', 42 42 'method': 'cardPayments', 43 'sandbox_mode': params. sandbox_mode,43 'sandbox_mode': params.test_mode, 44 44 'nonce': params.nonce 45 45 }; … … 106 106 async function confirmPayment() { 107 107 try { 108 const result = await embeddedPayment.confirmPayment(params. sandbox_mode === 'yes');108 const result = await embeddedPayment.confirmPayment(params.test_mode === 'yes'); 109 109 110 110 window.location.replace(result.returnUrl); -
montonio-for-woocommerce/trunk/includes/payment/class-wc-montonio-api.php
r3315103 r3316454 55 55 const MONTONIO_API_URL = 'https://stargate.montonio.com/api'; 56 56 57 public function __construct( $sandbox_mode ) {57 public function __construct( $sandbox_mode = 'no' ) { 58 58 $this->sandbox_mode = $sandbox_mode; 59 59 -
montonio-for-woocommerce/trunk/includes/payment/payment-methods/class-wc-montonio-payments.php
r3315103 r3316454 301 301 public function sync_banks( $settings ) { 302 302 try { 303 $montonio_api = new WC_Montonio_API( $settings['test_mode'] );303 $montonio_api = new WC_Montonio_API( $settings['test_mode'] ?? 'no' ); 304 304 $response = json_decode( $montonio_api->fetch_payment_methods() ); 305 305 -
montonio-for-woocommerce/trunk/languages/montonio-for-woocommerce.pot
r3315103 r3316454 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Montonio for WooCommerce 9.0. 2\n"5 "Project-Id-Version: Montonio for WooCommerce 9.0.4\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/montonio-for-woocommerce\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-06-2 0T09:45:46+00:00\n"12 "POT-Creation-Date: 2025-06-23T15:04:41+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" -
montonio-for-woocommerce/trunk/montonio.php
r3315137 r3316454 4 4 * Plugin URI: https://www.montonio.com 5 5 * Description: All-in-one plug & play checkout solution 6 * Version: 9.0. 36 * Version: 9.0.4 7 7 * Author: Montonio 8 8 * Author URI: https://www.montonio.com … … 21 21 } 22 22 23 define( 'WC_MONTONIO_PLUGIN_VERSION', '9.0. 3' );23 define( 'WC_MONTONIO_PLUGIN_VERSION', '9.0.4' ); 24 24 define( 'WC_MONTONIO_PLUGIN_URL', plugins_url( '', __FILE__ ) ); 25 25 define( 'WC_MONTONIO_PLUGIN_PATH', dirname( __FILE__ ) ); -
montonio-for-woocommerce/trunk/readme.txt
r3315137 r3316454 1 1 === Montonio for WooCommerce === 2 Version: 9.0. 32 Version: 9.0.4 3 3 Date: 2019-09-04 4 4 Contributors: Montonio … … 6 6 Requires at least: 5.0 7 7 Tested up to: 6.8 8 Stable tag: 9.0. 38 Stable tag: 9.0.4 9 9 Requires PHP: 7.0 10 10 Minimum requirements: WooCommerce 3.2 or greater … … 136 136 137 137 == Changelog == 138 = 9.0.4 = 139 * Fix - Embedded payment fields not working properly in checkout 140 138 141 = 9.0.3 = 139 142 * Fix - Payment test mode badge now displays correctly in admin settings page
Note: See TracChangeset
for help on using the changeset viewer.