Plugin Directory

Changeset 3406465


Ignore:
Timestamp:
12/01/2025 06:11:19 AM (4 months ago)
Author:
nexron
Message:

Release 2.0.8

Location:
nexron-ai-chat
Files:
12 added
3 edited

Legend:

Unmodified
Added
Removed
  • nexron-ai-chat/trunk/nexron-ai-chat-products.php

    r3370872 r3406465  
    77function nexron_ai_chat_verify_woocomerce_is_active()
    88{
    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    // }
    1526}
    1627
  • nexron-ai-chat/trunk/nexron-ai-chat.php

    r3403803 r3406465  
    33 * Plugin Name:  Nexron AI Chat
    44 * Description:  Nexron AI Chat is a powerful chatbot plugin for WordPress websites, helping visitors easily access website information through conversation.
    5  * Version:      2.0.7
     5 * Version:      2.0.8
    66 * Author:       Nexron LLC
    77 * Author URI:   https://www.nexron.ai
     
    1515*/
    1616
    17 define( 'nexron_ai_chat_version', '2.0.7' );
     17define( 'nexron_ai_chat_version', '2.0.8' );
    1818
    1919/*
  • nexron-ai-chat/trunk/readme.txt

    r3403803 r3406465  
    33Requires at least: 5.0
    44Tested up to: 6.8
    5 Stable tag: 2.0.7
     5Stable tag: 2.0.8
    66License: GPLv2 or later
    77License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    1313**Transform Your WordPress Site with Nexron AI Chat: The Ultimate Chatbot Solution**
    1414
    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>
     15https://www.youtube.com/watch?v=aO8_xFSxZWM
    1616
    1717Looking 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.
     
    112112== Changelog ==
    113113
     114= 2.0.8 - 2025-12-01 =
     115* Fix: Video Description.
     116
    114117= 2.0.7 - 2025-11-27 =
    115118* Fix: Readme spelling correction.
Note: See TracChangeset for help on using the changeset viewer.