Changeset 3488854
- Timestamp:
- 03/23/2026 10:56:49 AM (6 days ago)
- Location:
- authyo-otp-authentication-for-woocommerce/trunk
- Files:
-
- 3 added
- 4 edited
-
assets/css/universal-theme-fix.css (added)
-
authyo-otp-authentication-for-woocommerce.php (modified) (2 diffs)
-
includes/class-authyo-otp-auth-admin.php (modified) (2 diffs)
-
includes/class-authyo-otp-auth.php (modified) (1 diff)
-
modules/order-webhook (added)
-
modules/order-webhook/class-order-webhook.php (added)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
authyo-otp-authentication-for-woocommerce/trunk/authyo-otp-authentication-for-woocommerce.php
r3463509 r3488854 4 4 * Plugin URI: https://wordpress.org/plugins/authyo-otp-authentication-for-woocommerce/ 5 5 * Description: Our plugin enables secure OTP verification on the Login, Registration, and Checkout pages via Email, WhatsApp, SMS, and Voice Call. In addition, it provides seamless WooCommerce notifications through Email, WhatsApp, and SMS, ensuring reliable communication across multiple channels. 6 * Version: 1.0.1 46 * Version: 1.0.15 7 7 * Author: Authyo 8 8 * Author URI: https://authyo.io … … 26 26 27 27 // Define plugin constants 28 define('AUTHYO_OTP_AUTH_VERSION', '1.0.1 4');28 define('AUTHYO_OTP_AUTH_VERSION', '1.0.15'); 29 29 define('AUTHYO_OTP_AUTH_PLUGIN_DIR', plugin_dir_path(__FILE__)); 30 30 define('AUTHYO_OTP_AUTH_PLUGIN_URL', plugin_dir_url(__FILE__)); -
authyo-otp-authentication-for-woocommerce/trunk/includes/class-authyo-otp-auth-admin.php
r3463509 r3488854 306 306 // WooCommerce Order Notifications 307 307 register_setting('authyo_otp_auth_settings', 'authyo_otp_auth_order_notifications_enabled', array( 308 'type' => 'string', 309 'default' => 'no', 310 'sanitize_callback' => 'sanitize_text_field' 311 )); 312 313 // WooCommerce Order Webhook 314 register_setting('authyo_otp_auth_settings', 'authyo_otp_auth_order_webhook_enabled', array( 308 315 'type' => 'string', 309 316 'default' => 'no', … … 519 526 <strong><?php esc_html_e('Enable WooCommerce Order Notifications', 'authyo-otp-authentication-for-woocommerce'); ?></strong> 520 527 <small><?php esc_html_e('Send order status notifications to customers via Email, SMS, and WhatsApp.', 'authyo-otp-authentication-for-woocommerce'); ?></small> 528 </span> 529 </label> 530 </div> 531 532 <div class="authyo-setting-option"> 533 <label class="authyo-checkbox-label"> 534 <?php 535 $order_webhook_enabled = get_option('authyo_otp_auth_order_webhook_enabled', 'no'); 536 ?> 537 <input type="checkbox" 538 name="authyo_otp_auth_order_webhook_enabled" 539 value="yes" 540 id="authyo_order_webhook_enabled_toggle" 541 <?php checked($order_webhook_enabled, 'yes'); ?> /> 542 <span class="authyo-checkbox-text"> 543 <strong><?php esc_html_e('Enable Authyo Order Webhook', 'authyo-otp-authentication-for-woocommerce'); ?></strong> 544 <small><?php esc_html_e('Send order updates directly to Authyo API via webhook.', 'authyo-otp-authentication-for-woocommerce'); ?></small> 521 545 </span> 522 546 </label> -
authyo-otp-authentication-for-woocommerce/trunk/includes/class-authyo-otp-auth.php
r3419886 r3488854 61 61 if ( class_exists( 'Authyo_Notification_Flow' ) ) { 62 62 Authyo_Notification_Flow::get_instance(); 63 } 64 65 // Initialize Order Webhook module 66 require_once AUTHYO_OTP_AUTH_PLUGIN_DIR . 'modules/order-webhook/class-order-webhook.php'; 67 if ( class_exists( 'Authyo_Order_Webhook' ) ) { 68 Authyo_Order_Webhook::get_instance(); 63 69 } 64 70 } -
authyo-otp-authentication-for-woocommerce/trunk/readme.txt
r3465512 r3488854 4 4 Requires at least: 5.0 5 5 Tested up to: 6.9 6 Stable tag: 1.0.1 46 Stable tag: 1.0.15 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 55 55 56 56 == Changelog == 57 58 = 1.0.15 = 59 * Performance improvement 57 60 58 61 = 1.0.14 =
Note: See TracChangeset
for help on using the changeset viewer.