Changeset 3474111
- Timestamp:
- 03/04/2026 02:30:50 AM (4 weeks ago)
- Location:
- fraudlabs-pro-sms-verification/trunk
- Files:
-
- 3 edited
-
fraudlabspro-sms-verification.php (modified) (1 diff)
-
includes/class-wc-fraudlabspro-sms-verification.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fraudlabs-pro-sms-verification/trunk/fraudlabspro-sms-verification.php
r3432377 r3474111 3 3 Plugin Name: FraudLabs Pro SMS Verification 4 4 Description: SMS verification help merchants to authenticate the client's identity by sending them a SMS for verification. 5 Version: 1.11. 35 Version: 1.11.4 6 6 Author: FraudLabs Pro 7 7 Author URI: https://www.fraudlabspro.com -
fraudlabs-pro-sms-verification/trunk/includes/class-wc-fraudlabspro-sms-verification.php
r3432377 r3474111 2014 2014 $sms_verify['fraudlabspro_wc_email_code'] = $sms_code . '_VERIFIED'; 2015 2015 update_post_meta($sms_order_id, '_fraudlabspro_sms_wc', $sms_verify); 2016 2017 $order_status = (get_option('fraudlabs_pro_sms_verification_wc_change_order_when_verified') == 1) ? get_option('fraudlabs_pro_sms_verification_wc_verified_status') : ''; 2018 if ((get_option('fraudlabs_pro_sms_verification_wc_change_order_when_verified') == 1) && $order_status) { 2019 $order = wc_get_order($id); 2020 $order->add_order_note(__('Change the order status when the phone number is successfully verified.')); 2021 $order->update_status($order_status); 2022 } 2016 2023 } 2017 2024 } else { … … 2019 2026 $sms_verify->fraudlabspro_wc_email_code = $sms_code . '_VERIFIED'; 2020 2027 update_post_meta($sms_order_id, '_fraudlabspro_sms_wc', $sms_verify); 2028 2029 $order_status = (get_option('fraudlabs_pro_sms_verification_wc_change_order_when_verified') == 1) ? get_option('fraudlabs_pro_sms_verification_wc_verified_status') : ''; 2030 if ((get_option('fraudlabs_pro_sms_verification_wc_change_order_when_verified') == 1) && $order_status) { 2031 $order = wc_get_order($id); 2032 $order->add_order_note(__('Change the order status when the phone number is successfully verified.')); 2033 $order->update_status($order_status); 2034 } 2021 2035 } 2022 2036 } -
fraudlabs-pro-sms-verification/trunk/readme.txt
r3432377 r3474111 5 5 Requires at least: 4.6 6 6 Tested up to: 6.9 7 Stable tag: 1.11. 37 Stable tag: 1.11.4 8 8 9 9 Description: SMS verification help merchants to authenticate the client's phone number via SMS verification to prevent fraudulent orders. … … 49 49 == Changelog == 50 50 51 * 1.11.4 Fixed order status change issue when SMS verified. 51 52 * 1.11.3 Fixed SMS Verification not working in WooCommerce Checkout page. 52 53 * 1.11.2 Fixed SMS Verification issue in WooCommerce Checkout Block.
Note: See TracChangeset
for help on using the changeset viewer.