Changeset 3322100
- Timestamp:
- 07/04/2025 05:20:53 AM (8 months ago)
- Location:
- replypilot-ai
- Files:
-
- 33 added
- 5 edited
-
tags/1.6 (added)
-
tags/1.6/LICENSE.txt (added)
-
tags/1.6/admin.php (added)
-
tags/1.6/ai-chatbot.php (added)
-
tags/1.6/ai-generator.php (added)
-
tags/1.6/assets (added)
-
tags/1.6/assets/chat.png (added)
-
tags/1.6/assets/css (added)
-
tags/1.6/assets/css/chatbot-style.css (added)
-
tags/1.6/assets/css/style.css (added)
-
tags/1.6/assets/fontawesome (added)
-
tags/1.6/assets/fontawesome/css (added)
-
tags/1.6/assets/fontawesome/css/all.min.css (added)
-
tags/1.6/assets/fontawesome/webfonts (added)
-
tags/1.6/assets/fontawesome/webfonts/fa-solid-900.ttf (added)
-
tags/1.6/assets/fontawesome/webfonts/fa-solid-900.woff2 (added)
-
tags/1.6/assets/icon-256x256.png (added)
-
tags/1.6/assets/js (added)
-
tags/1.6/assets/js/replypilot-ai.js (added)
-
tags/1.6/assets/js/script.js (added)
-
tags/1.6/autoreply-comments.php (added)
-
tags/1.6/custom-handle-ai-reply.php (added)
-
tags/1.6/forum-functions (added)
-
tags/1.6/forum-functions/Asgaros-Forum.php (added)
-
tags/1.6/forum-functions/ForumWP.php (added)
-
tags/1.6/forum-functions/bbpress-auto-reply.php (added)
-
tags/1.6/forum-functions/buddypress-auto-reply.php (added)
-
tags/1.6/forum-functions/wpForo-Forum.php (added)
-
tags/1.6/includes (added)
-
tags/1.6/includes/functions.php (added)
-
tags/1.6/index.php (added)
-
tags/1.6/readme.txt (added)
-
tags/1.6/replypilot-ai.php (added)
-
trunk/ai-chatbot.php (modified) (2 diffs)
-
trunk/assets/css/chatbot-style.css (modified) (3 diffs)
-
trunk/assets/js/script.js (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/replypilot-ai.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
replypilot-ai/trunk/ai-chatbot.php
r3320959 r3322100 151 151 instructions: 152 152 1. chatresponse: Provide a concise, accurate response to the user\'s question. 153 2. suggests: Include 2–3 relevant follow-up questions that are natural next steps or clarifications.153 2. suggests:Relevant follow-up questions or next-step topics that logically extend the conversation. 154 154 3. Follow-up questions must be 2–6 words long. 155 155 Use this exact structure. Respond to the user\'s message now.' … … 349 349 <?php foreach ($conversation_messages as $message): ?> 350 350 <div class="chatbot-admin-message message-bubble <?php echo esc_attr($message->message_type); ?>"> 351 <div class="message-content "><?php echo nl2br( esc_html($message->content)); ?></div>351 <div class="message-content "><?php echo nl2br(wp_kses_post($message->content)); ?></div> 352 352 <div class="message-time"><?php echo esc_html(gmdate('g:i a', strtotime($message->sent_at))); ?></div> 353 353 </div> -
replypilot-ai/trunk/assets/css/chatbot-style.css
r3320959 r3322100 200 200 font-size: 16px; 201 201 transition: border 0.2s; 202 height:40px; 202 203 } 203 204 … … 280 281 color: #2D3748; 281 282 box-sizing: border-box; 283 font-family: Arial, Helvetica, sans-serif; 282 284 } 283 285 #replypilot-user-data-form p{ … … 345 347 color: #4285f4; 346 348 font-size: 14px; 347 padding: 3px 9px;349 padding: 5px 10px; 348 350 border: 1px solid #ddd; 349 351 border-radius: 30px; -
replypilot-ai/trunk/assets/js/script.js
r3320959 r3322100 13 13 14 14 // Handle sending messages 15 $('#replypilot-chatbot-send').click(sendMessage); 15 $('#replypilot-chatbot-send').on('click', function () { 16 sendMessage(); 17 }); 16 18 17 19 // Textarea auto-resize and enter key … … 128 130 // Add message to chat 129 131 function addMessage(sender, message, services = []) { 132 130 133 message = message.replace(/\*\*/g, ''); 131 134 message = message.replace(/\n/g, '<br>'); … … 166 169 addMessage('user', input); 167 170 168 $('#replypilot-chatbot-user-input').val('').css('height', ' auto');171 $('#replypilot-chatbot-user-input').val('').css('height', '40px'); 169 172 170 173 // Show typing indicator -
replypilot-ai/trunk/readme.txt
r3320959 r3322100 1 1 === ReplyPilot AI === 2 2 Contributors: techbeeps, gurjeet6090 3 Tags: auto reply, AI comment, chatbot, comment bot,ai chatbot3 Tags: free comment reply, free chatbot, chatbot, comment bot,ai chatbot 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 6 Requires PHP: 7.4 7 Stable tag: 1. 57 Stable tag: 1.6 8 8 License: GPL-2.0+ 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 140 140 141 141 == Changelog == 142 = 1.6 = 143 * Send Chatbot button conflict fixed". 144 142 145 = 1.5 = 143 146 * New Feature: Added user interface to show question suggestions. -
replypilot-ai/trunk/replypilot-ai.php
r3320959 r3322100 4 4 Plugin URI: https://replypilot.techbeeps.com/ 5 5 Description: AI-powered plugin that auto-generates human-like replies to user comments and provides a real-time chatbot on your website. 6 Version: 1. 56 Version: 1.6 7 7 Author: Techbeeps 8 8 Author URI: https://techbeeps.co.in/ … … 16 16 } 17 17 18 define('REPLYPILOT_AI_TBS', '1. 5');18 define('REPLYPILOT_AI_TBS', '1.6'); 19 19 define('REPLYPILOT_AI_TBS_PATH', plugin_dir_path(__FILE__)); 20 20 define('REPLYPILOT_AI_TBS_URL', __FILE__);
Note: See TracChangeset
for help on using the changeset viewer.