Plugin Directory

Changeset 3354460


Ignore:
Timestamp:
09/02/2025 08:57:55 AM (7 months ago)
Author:
alphainterface
Message:

Removed chat_id

Location:
chat-bot-alpha-interface/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chat-bot-alpha-interface/trunk/chat-bot-alpha_interface.php

    r3352517 r3354460  
    44 * Plugin URI: https://www.npmjs.com/package/alpha-interface
    55 * Description: Embeds the Alpha Interface chatbot into your site using a custom web component.
    6  * Version: 2.0.1
     6 * Version: 2.0.2
    77 * Author: alphainterface
    88 * Author URI: https://alphainterface.ai
     
    2222    wp_register_script(
    2323        'ai-chatbot-module',
    24         'https://cdn.jsdelivr.net/npm/alpha-interface@0.0.8/dist/hash-bot/hash-bot.esm.js',
     24        'https://cdn.jsdelivr.net/npm/alpha-interface@1.0.0/dist/hash-bot/hash-bot.esm.js',
    2525        [],
    2626        null,
     
    4747    $apiurl        = esc_attr( $options['apiurl'] ?? '' );
    4848    $agent_uuid    = esc_attr( $options['agent_uuid'] ?? '' );
    49     $chat_id       = esc_attr( $options['chat_id'] ?? '' );
    5049    $iconsize      = esc_attr( $options['iconsize'] ?? '70' );
    5150    $chatbotwidth  = esc_attr( $options['chatbotwidth'] ?? '300' );
     
    5554            agent_uuid="'. $agent_uuid . '"
    5655            apiurl="' . $apiurl . '"
    57             chat_id="' . $chat_id . '"
    5856            iconsize="' . $iconsize . '"
    5957            chatbotwidth="' . $chatbotwidth . '"
     
    120118                </tr>
    121119                <tr>
    122                     <th scope="row">Chat ID</th>
    123                     <td><input type="text" name="ai_chatbot_settings[chat_id]" value="<?php echo esc_attr( $options['chat_id'] ?? '' ); ?>" class="regular-text" /></td>
    124                 </tr>
    125                 <tr>
    126120                    <th scope="row">Icon Size</th>
    127121                    <td><input type="number" name="ai_chatbot_settings[iconsize]" value="<?php echo esc_attr( $options['iconsize'] ?? '70' ); ?>" /></td>
  • chat-bot-alpha-interface/trunk/readme.txt

    r3352517 r3354460  
    44Requires at least: 5.0
    55Tested up to: 6.8
    6 Stable tag: 2.0.1
     6Stable tag: 2.0.2
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3030
    3131== Changelog ==
    32 = 2.0.1 =
    33 * Changed agent_id to agent_uuid
     32= 2.0.2 =
     33* Removed chat_id
    3434
    3535== Source Code ==
Note: See TracChangeset for help on using the changeset viewer.