Changeset 3406465
- Timestamp:
- 12/01/2025 06:11:19 AM (4 months ago)
- Location:
- nexron-ai-chat
- Files:
-
- 12 added
- 3 edited
-
tags/2.0.7 (added)
-
tags/2.0.7/images (added)
-
tags/2.0.7/images/nexron-blue.png (added)
-
tags/2.0.7/images/nexron-icon.png (added)
-
tags/2.0.7/images/nexron-loading.png (added)
-
tags/2.0.7/nexron-ai-chat-admin-script.js (added)
-
tags/2.0.7/nexron-ai-chat-config.php (added)
-
tags/2.0.7/nexron-ai-chat-options.php (added)
-
tags/2.0.7/nexron-ai-chat-products.php (added)
-
tags/2.0.7/nexron-ai-chat-settings.php (added)
-
tags/2.0.7/nexron-ai-chat.php (added)
-
tags/2.0.7/readme.txt (added)
-
trunk/nexron-ai-chat-products.php (modified) (1 diff)
-
trunk/nexron-ai-chat.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nexron-ai-chat/trunk/nexron-ai-chat-products.php
r3370872 r3406465 7 7 function nexron_ai_chat_verify_woocomerce_is_active() 8 8 { 9 global $nexron_ai_chat_woo_commerce_active; 10 if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) { 11 return true; 12 } else { 13 return false; 14 } 9 $active_plugins = (array) get_option( 'active_plugins', [] ); 10 11 if ( is_multisite() ) { 12 $active_plugins = array_merge( 13 $active_plugins, 14 array_keys( get_site_option( 'active_sitewide_plugins', [] ) ) 15 ); 16 } 17 18 return in_array( 'woocommerce/woocommerce.php', $active_plugins, true ); 19 20 // global $nexron_ai_chat_woo_commerce_active; 21 // if (in_array('woocommerce/woocommerce.php', apply_filters('active_plugins', get_option('active_plugins')))) { 22 // return true; 23 // } else { 24 // return false; 25 // } 15 26 } 16 27 -
nexron-ai-chat/trunk/nexron-ai-chat.php
r3403803 r3406465 3 3 * Plugin Name: Nexron AI Chat 4 4 * Description: Nexron AI Chat is a powerful chatbot plugin for WordPress websites, helping visitors easily access website information through conversation. 5 * Version: 2.0. 75 * Version: 2.0.8 6 6 * Author: Nexron LLC 7 7 * Author URI: https://www.nexron.ai … … 15 15 */ 16 16 17 define( 'nexron_ai_chat_version', '2.0. 7' );17 define( 'nexron_ai_chat_version', '2.0.8' ); 18 18 19 19 /* -
nexron-ai-chat/trunk/readme.txt
r3403803 r3406465 3 3 Requires at least: 5.0 4 4 Tested up to: 6.8 5 Stable tag: 2.0. 75 Stable tag: 2.0.8 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 **Transform Your WordPress Site with Nexron AI Chat: The Ultimate Chatbot Solution** 14 14 15 <iframe width="560" height="315" src="https://www.youtube.com/embed/aO8_xFSxZWM" title="Nexron Chat AI - WordPress Plugin" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe> 15 https://www.youtube.com/watch?v=aO8_xFSxZWM 16 16 17 17 Looking to revolutionize the way you engage with visitors on your WordPress site? Nexron AI Chat is the must-have plugin that brings intelligent, real-time conversations right to your website. Whether you’re answering questions, offering support, or guiding users to the right content, Nexron AI Chat ensures a seamless, interactive experience that keeps visitors coming back. … … 112 112 == Changelog == 113 113 114 = 2.0.8 - 2025-12-01 = 115 * Fix: Video Description. 116 114 117 = 2.0.7 - 2025-11-27 = 115 118 * Fix: Readme spelling correction.
Note: See TracChangeset
for help on using the changeset viewer.