Changeset 3313211
- Timestamp:
- 06/17/2025 11:24:35 AM (8 months ago)
- Location:
- cheshire-cat-chatbot/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (3 diffs)
-
cheshire-cat-chatbot.php (modified) (2 diffs)
-
inc/ajax.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cheshire-cat-chatbot/trunk/README.txt
r3313168 r3313211 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.8 7 Stable tag: 0.6. 37 Stable tag: 0.6.4 8 8 License: GPLv3 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 79 79 == Changelog == 80 80 81 = 0.6.4 = 82 * Added option to hide predefined questions in chat when they are shown in content 83 * Improved user experience by avoiding duplicate questions display 84 * Enhanced compatibility with latest WordPress version 85 81 86 = 0.6.3 = 82 87 * Added support for predefined responses in content … … 158 163 == Upgrade Notice == 159 164 165 = 0.6.4 = 166 Feature update: Added option to hide predefined questions in chat when they are shown in content, improving user experience by avoiding duplicate display of questions. 167 160 168 = 0.6.3 = 161 169 Feature update: Added support for predefined responses in content, improved chat interface, and fixed various bugs for better performance and compatibility. -
cheshire-cat-chatbot/trunk/cheshire-cat-chatbot.php
r3313168 r3313211 12 12 * Plugin URI: https://cheshirecat.ai/ 13 13 * Description: A WordPress plugin to integrate the Cheshire Cat AI chatbot, offering seamless conversational AI for your site. 14 * Version: 0.6. 314 * Version: 0.6.4 15 15 * Author: Marco Buttarini 16 16 * Author URI: https://bititup.it/ … … 32 32 33 33 // Define plugin constants. 34 define( 'CHESHIRE_CAT_VERSION', '0.6. 3' );34 define( 'CHESHIRE_CAT_VERSION', '0.6.4' ); 35 35 define( 'CHESHIRE_CAT_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 36 36 define( 'CHESHIRE_CAT_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); -
cheshire-cat-chatbot/trunk/inc/ajax.php
r3313168 r3313211 97 97 check_ajax_referer( 'cheshire_ajax_nonce', 'nonce' ); 98 98 99 // Check if predefined responses should be shown in content 100 $show_predefined_in_content = get_option( 'cheshire_plugin_show_predefined_in_content', 'off' ); 101 102 // If predefined responses are shown in content, don't show them in chat 103 if ( $show_predefined_in_content === 'on' ) { 104 wp_send_json_success( array() ); 105 return; 106 } 107 99 108 // Get page ID if provided 100 109 $page_id = isset( $_POST['page_id'] ) ? absint( $_POST['page_id'] ) : 0;
Note: See TracChangeset
for help on using the changeset viewer.