Changeset 3446618
- Timestamp:
- 01/25/2026 05:18:13 PM (2 months ago)
- Location:
- triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk
- Files:
-
- 3 edited
-
includes/WooCommerce/views/triplea_options.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
triplea-cryptocurrency-payment-gateway-for-woocommerce.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/includes/WooCommerce/views/triplea_options.php
r3446589 r3446618 108 108 </div> 109 109 <?php else: ?> 110 <!-- Encryption key is configured, show credentials form --> 110 111 <div class="triplea-settings-notice" style="background-color:#d4edda;border-left:4px solid #28a745;padding:15px;margin-bottom:20px;"> 111 112 <p style="margin:0;color:#155724;"><strong>✔ <?php _e('Encryption Key Configured', 'wc-triplea-crypto-payment'); ?></strong> - <?php _e('Your wp-config.php encryption key is set up correctly.', 'wc-triplea-crypto-payment'); ?></p> 112 113 </div> 113 <?php endif; ?>114 114 115 115 <div class="triplea-settings-notice"> … … 155 155 <input type="hidden" name="oAuthToken" id="oAuthToken"> 156 156 <input type="hidden" name="oAuthTokenExpiry" id="oAuthTokenExpiry"> 157 <?php endif; ?> 157 158 </div> 158 159 <div id="settings" class="tab-content"> … … 224 225 <p>Payment not guaranteed yet at this stage! Do not yet provide the product or service.</p> 225 226 <?php endif; ?> 226 <?php endforeach; ?>227 <?php endforeach; ?> 227 228 </div> 228 229 <div id="account-verification" class="tab-content"> … … 349 350 $('#woocommerce_triplea_payment_gateway_merchant_key').val(merchantKey); 350 351 $('#woocommerce_triplea_payment_gateway_client_id').val(clientID); 351 $('#woocommerce_triplea_payment_gateway_client_secret').val(clientSecret); 352 353 // Only update client_secret if user entered a new value (not empty) 354 // This prevents overwriting existing encrypted secret when saving from other tabs 355 if (clientSecret && clientSecret.trim() !== '') { 356 $('#woocommerce_triplea_payment_gateway_client_secret').val(clientSecret); 357 } 352 358 353 359 //Second Tab options save -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/readme.txt
r3446589 r3446618 7 7 Requires at least: 5.5 8 8 Tested up to: 6.6.2 9 Stable tag: 2.0.2 49 Stable tag: 2.0.25 10 10 Requires PHP: 7.0 11 11 License: GPLv2 or later … … 104 104 == Changelog == 105 105 106 = 2.0.25 = 107 * Fixed: Client secret no longer gets erased when saving settings from non-Account tabs 108 106 109 = 2.0.24 = 107 110 * Security: Custom encryption key system (TRIPLEA_ENCRYPTION_KEY in wp-config.php) -
triplea-cryptocurrency-payment-gateway-for-woocommerce/trunk/triplea-cryptocurrency-payment-gateway-for-woocommerce.php
r3446589 r3446618 17 17 * Plugin URI: https://wordpress.org/plugins/triplea-cryptocurrency-payment-gateway-for-woocommerce/ 18 18 * Description: Offer cryptocurrency as a payment option on your website and get access to even more clients. Receive payments in cryptocurrency or in your local currency, directly in your bank account. Enjoy an easy setup, no cryptocurrency expertise required. Powered by Triple-A. 19 * Version: 2.0.2 419 * Version: 2.0.25 20 20 * Author: Triple-A Team 21 21 * Author URI: https://triple-a.io … … 49 49 * $var string 50 50 */ 51 public const version = '2.0.2 4';51 public const version = '2.0.25'; 52 52 53 53 /*
Note: See TracChangeset
for help on using the changeset viewer.