Changeset 2877840
- Timestamp:
- 03/10/2023 12:13:59 PM (3 years ago)
- Location:
- ellypos-pay/trunk
- Files:
-
- 2 edited
-
ellypos-pay.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ellypos-pay/trunk/ellypos-pay.php
r2771529 r2877840 3 3 * Plugin Name: Elly POS Pay 4 4 * Description: Pay fast and secure with cards, crypto and other digital payments. 5 * Version: 1.0. 35 * Version: 1.0.4 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()); -
ellypos-pay/trunk/readme.txt
r2771529 r2877840 2 2 Plugin Name: Elly POS Pay 3 3 Description: Pay fast and secure with cards, crypto and other digital payments. 4 Stable tag: 1.0. 34 Stable tag: 1.0.4 5 5 Author: Eligma Ltd. 6 6 Author URI: https://gocrypto.com … … 51 51 == Changelog == 52 52 53 = 1.0.4 = 54 Overpayment and Underpayment support 55 56 = 1.0.3 = 57 Update description 58 59 = 1.0.2 = 60 Update description 61 62 = 1.0.1 = 63 Update description 64 53 65 = 1.0.0 = 54 66 Initial release
Note: See TracChangeset
for help on using the changeset viewer.