Changeset 3354460
- Timestamp:
- 09/02/2025 08:57:55 AM (7 months ago)
- Location:
- chat-bot-alpha-interface/trunk
- Files:
-
- 2 edited
-
chat-bot-alpha_interface.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
chat-bot-alpha-interface/trunk/chat-bot-alpha_interface.php
r3352517 r3354460 4 4 * Plugin URI: https://www.npmjs.com/package/alpha-interface 5 5 * Description: Embeds the Alpha Interface chatbot into your site using a custom web component. 6 * Version: 2.0. 16 * Version: 2.0.2 7 7 * Author: alphainterface 8 8 * Author URI: https://alphainterface.ai … … 22 22 wp_register_script( 23 23 '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', 25 25 [], 26 26 null, … … 47 47 $apiurl = esc_attr( $options['apiurl'] ?? '' ); 48 48 $agent_uuid = esc_attr( $options['agent_uuid'] ?? '' ); 49 $chat_id = esc_attr( $options['chat_id'] ?? '' );50 49 $iconsize = esc_attr( $options['iconsize'] ?? '70' ); 51 50 $chatbotwidth = esc_attr( $options['chatbotwidth'] ?? '300' ); … … 55 54 agent_uuid="'. $agent_uuid . '" 56 55 apiurl="' . $apiurl . '" 57 chat_id="' . $chat_id . '"58 56 iconsize="' . $iconsize . '" 59 57 chatbotwidth="' . $chatbotwidth . '" … … 120 118 </tr> 121 119 <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>126 120 <th scope="row">Icon Size</th> 127 121 <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 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 2.0. 16 Stable tag: 2.0.2 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 30 30 31 31 == Changelog == 32 = 2.0. 1=33 * Changed agent_id to agent_uuid32 = 2.0.2 = 33 * Removed chat_id 34 34 35 35 == Source Code ==
Note: See TracChangeset
for help on using the changeset viewer.