Plugin Directory

Changeset 3322100


Ignore:
Timestamp:
07/04/2025 05:20:53 AM (8 months ago)
Author:
techbeeps
Message:

version 1.6

Location:
replypilot-ai
Files:
33 added
5 edited

Legend:

Unmodified
Added
Removed
  • replypilot-ai/trunk/ai-chatbot.php

    r3320959 r3322100  
    151151instructions:
    152152  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.
    154154  3. Follow-up questions must be 2–6 words long.
    155155Use this exact structure. Respond to the user\'s message now.'
     
    349349                    <?php foreach ($conversation_messages as $message): ?>
    350350                        <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>
    352352                            <div class="message-time"><?php echo esc_html(gmdate('g:i a', strtotime($message->sent_at))); ?></div>
    353353                        </div>
  • replypilot-ai/trunk/assets/css/chatbot-style.css

    r3320959 r3322100  
    200200    font-size: 16px;
    201201    transition: border 0.2s;
     202    height:40px;
    202203}
    203204
     
    280281     color: #2D3748;
    281282     box-sizing: border-box;
     283    font-family: Arial, Helvetica, sans-serif;
    282284}
    283285#replypilot-user-data-form p{
     
    345347     color: #4285f4;
    346348    font-size: 14px;
    347     padding: 3px 9px;
     349    padding: 5px 10px;
    348350    border: 1px solid #ddd;
    349351    border-radius: 30px;
  • replypilot-ai/trunk/assets/js/script.js

    r3320959 r3322100  
    1313
    1414        // Handle sending messages
    15         $('#replypilot-chatbot-send').click(sendMessage);
     15        $('#replypilot-chatbot-send').on('click', function () {   
     16                sendMessage();         
     17        });
    1618
    1719        // Textarea auto-resize and enter key
     
    128130    // Add message to chat
    129131    function addMessage(sender, message, services = []) {
     132
    130133        message = message.replace(/\*\*/g, '');
    131134        message = message.replace(/\n/g, '<br>');
     
    166169        addMessage('user', input);
    167170
    168         $('#replypilot-chatbot-user-input').val('').css('height', 'auto');
     171        $('#replypilot-chatbot-user-input').val('').css('height', '40px');
    169172
    170173        // Show typing indicator
  • replypilot-ai/trunk/readme.txt

    r3320959 r3322100  
    11=== ReplyPilot AI ===
    22Contributors: techbeeps, gurjeet6090
    3 Tags: auto reply, AI comment, chatbot, comment bot,ai chatbot
     3Tags: free comment reply, free chatbot, chatbot, comment bot,ai chatbot
    44Requires at least: 5.0
    55Tested up to: 6.8
    66Requires PHP: 7.4
    7 Stable tag: 1.5
     7Stable tag: 1.6
    88License: GPL-2.0+
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    140140
    141141== Changelog ==
     142= 1.6 =
     143* Send Chatbot button conflict fixed".
     144
    142145= 1.5 =
    143146* New Feature: Added user interface to show question suggestions.
  • replypilot-ai/trunk/replypilot-ai.php

    r3320959 r3322100  
    44Plugin URI:  https://replypilot.techbeeps.com/
    55Description: AI-powered plugin that auto-generates human-like replies to user comments and provides a real-time chatbot on your website.
    6 Version:     1.5
     6Version:     1.6
    77Author:      Techbeeps
    88Author URI:  https://techbeeps.co.in/
     
    1616}
    1717
    18 define('REPLYPILOT_AI_TBS', '1.5');
     18define('REPLYPILOT_AI_TBS', '1.6');
    1919define('REPLYPILOT_AI_TBS_PATH', plugin_dir_path(__FILE__));
    2020define('REPLYPILOT_AI_TBS_URL',  __FILE__);
Note: See TracChangeset for help on using the changeset viewer.