Changeset 2877841
- Timestamp:
- 03/10/2023 12:14:18 PM (3 years ago)
- Location:
- gls-pay/trunk
- Files:
-
- 2 edited
-
gls-pay.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
gls-pay/trunk/gls-pay.php
r2771527 r2877841 3 3 * Plugin Name: GLS Pay 4 4 * Description: Pay fast and secure with cards, crypto and other digital payments. 5 * Version: 1.0. 25 * Version: 1.0.3 6 6 * Author: Eligma Ltd. 7 7 * Author URI: https://gocrypto.com … … 258 258 if (null != $transactionId) { 259 259 $transactionStatus = $this->gocryptoPay->checkTransactionStatus($transactionId); 260 if ($transactionStatus == 'SUCCESS') {260 if ($transactionStatus === 'SUCCESS' || $transactionStatus === 'OVERPAID') { 261 261 global $woocommerce; 262 262 /* translators: %s: payment method */ … … 264 264 $order->update_status('processing', $statusMsg); 265 265 $woocommerce->cart->empty_cart(); 266 267 266 // send email to costumer 268 267 WC()->mailer()->emails['WC_Email_Customer_Processing_Order']->trigger($order->get_id()); -
gls-pay/trunk/readme.txt
r2771527 r2877841 2 2 Plugin Name: GLS Pay 3 3 Description: Pay fast and secure with cards, crypto and other digital payments. 4 Stable tag: 1.0. 24 Stable tag: 1.0.3 5 5 Author: Eligma Ltd. 6 6 Author URI: https://gocrypto.com … … 51 51 == Changelog == 52 52 53 = 1.0.3 = 54 Overpayment and Underpayment support 55 56 = 1.0.2 = 57 Update description 58 59 = 1.0.1 = 60 Update description 61 53 62 = 1.0.0 = 54 63 Initial release
Note: See TracChangeset
for help on using the changeset viewer.