Changeset 3340401
- Timestamp:
- 08/06/2025 01:32:22 PM (8 months ago)
- Location:
- otpfy-your-website/trunk
- Files:
-
- 2 edited
-
otpfy-for-wordpress.php (modified) (2 diffs)
-
public/class-otpfy-for-wordpress-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
otpfy-your-website/trunk/otpfy-for-wordpress.php
r3340368 r3340401 12 12 * Plugin URI: https://otpfy.in 13 13 * Description: OTPfy almost anything in your wordpress website!! OTP based Login, Signup, Order Confirmation, just anything you can imagine. Integrate OTP based 2 factor authentication using our developer hooks. 14 * Version: 1.0.3. 214 * Version: 1.0.3.3 15 15 * Author: Bitss Techniques 16 16 * Author URI: https://bitss.tech … … 31 31 * Rename this for your plugin and update it as you release new versions. 32 32 */ 33 define( 'OTPFY_FOR_WORDPRESS_VERSION', '1.0.3. 2' );33 define( 'OTPFY_FOR_WORDPRESS_VERSION', '1.0.3.3' ); 34 34 35 35 /** -
otpfy-your-website/trunk/public/class-otpfy-for-wordpress-public.php
r3340368 r3340401 466 466 $get_checkout_verify = $this->settings->get_checkout_verify(); 467 467 if($get_checkout_verify == "off") return; 468 if($get_checkout_verify == "cod" && !isset($_POST['payment_method']) && !isset($_POST['payment_method_cod'])){468 if($get_checkout_verify == "cod" && (!isset($_POST['payment_method']) || !isset($_POST['payment_method_cod']))){ 469 469 return; // Skip OTP for non-COD payments 470 470 }
Note: See TracChangeset
for help on using the changeset viewer.