Changeset 3484472
- Timestamp:
- 03/17/2026 06:17:37 AM (2 weeks ago)
- Location:
- hashtechy-chatbot/trunk
- Files:
-
- 1 added
- 1 deleted
- 5 edited
-
assets/js/admin.js (modified) (1 diff)
-
assets/js/frontend.js (modified) (2 diffs)
-
hashtechy-chatbot.php (modified) (1 diff)
-
includes/class-ezee-chatbot.php (added)
-
includes/class-hashtechy-chatbot.php (deleted)
-
readme.txt (modified) (7 diffs)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
hashtechy-chatbot/trunk/assets/js/admin.js
r3478021 r3484472 1 1 jQuery(document).ready(function($){ 2 console.log(" HashtechyAdmin Loaded");2 console.log("Ezee Chatbot Admin Loaded"); 3 3 }); -
hashtechy-chatbot/trunk/assets/js/frontend.js
r3478021 r3484472 1 1 document.addEventListener("DOMContentLoaded", function() { 2 2 3 if (! hashtechyChatbot.settings) return;3 if (!ezeeChatbot .settings) return; 4 4 5 const data = hashtechyChatbot.settings;5 const data = ezeeChatbot .settings; 6 6 7 7 if (!data.enabled || !data.script_url || !data.bot_id) return; … … 14 14 document.body.appendChild(script); 15 15 16 fetch( hashtechyChatbot.ajax_url, {16 fetch(ezeeChatbot .ajax_url, { 17 17 method: "POST", 18 18 headers: {"Content-Type":"application/x-www-form-urlencoded"}, 19 body: "action= hashtechy_chatbot_hit"19 body: "action=ezee_chatbot_hit" 20 20 }); 21 21 }); -
hashtechy-chatbot/trunk/hashtechy-chatbot.php
r3484421 r3484472 1 1 <?php 2 2 /* 3 Plugin Name: HashtechyChatbot3 Plugin Name: Ezee Chatbot 4 4 Plugin URI: https://www.ezeechatbot.com/ 5 5 Description: Modern AI Chatbot with Analytics & Premium Admin UI. 6 Version: 1.0. 06 Version: 1.0.1 7 7 Author: Hashtechy 8 8 Requires at least: 5.8 9 9 Requires PHP: 7.4 10 10 License: GPL v2 or later 11 text-domain: hashtechy-chatbot11 Text Domain: ezee-chatbot 12 12 */ 13 13 14 14 if (!defined('ABSPATH')) exit; 15 15 16 define(' HASHTECHY_CHATBOT_PATH', plugin_dir_path(__FILE__));17 define(' HASHTECHY_CHATBOT_URL', plugin_dir_url(__FILE__));16 define('EZEE_CHATBOT_PATH', plugin_dir_path(__FILE__)); 17 define('EZEE_CHATBOT_URL', plugin_dir_url(__FILE__)); 18 18 19 require_once HASHTECHY_CHATBOT_PATH . 'includes/class-hashtechy-chatbot.php';19 require_once EZEE_CHATBOT_PATH . 'includes/class-ezee-chatbot.php'; 20 20 21 new Hashtechy_Chatbot();21 new Ezee_Chatbot(); -
hashtechy-chatbot/trunk/readme.txt
r3478169 r3484472 1 === HashtechyChatbot ===1 === Ezee Chatbot === 2 2 Contributors: hashtechy 3 Donate link: https:// hashtechy.com3 Donate link: https://www.ezeechatbot.com/ 4 4 Tags: chatbot, ai chatbot, support chatbot, live chat 5 5 Requires at least: 5.8 6 6 Tested up to: 6.9.1 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 14 14 == Description == 15 15 16 Instant AI chatbot for WordPress with modern UI, analytics, and easy integration.16 Ezee Chatbot is a modern AI-powered chatbot plugin for WordPress that helps you automate customer support, generate leads, and enhance user engagement. 17 17 18 18 Key Features: … … 20 20 * Modern chatbot UI 21 21 * Easy integration using script 22 * Real-time analytics 23 * Lightweight and fast 22 * Real-time analytics dashboard 23 * Lightweight and fast performance 24 24 * Works with any WordPress theme 25 25 * No coding required … … 29 29 * Business websites 30 30 * SaaS platforms 31 * Customer support 31 * Customer support automation 32 32 * Lead generation 33 33 … … 36 36 1. Upload the plugin files to the `/wp-content/plugins/hashtechy-chatbot` directory, or install via the WordPress plugin installer. 37 37 2. Activate the plugin through the **Plugins** screen in WordPress. 38 3. Open ** HashtechyChatbot Settings** from the admin menu.38 3. Open **Ezee Chatbot Settings** from the admin menu. 39 39 4. Add your chatbot script URL or Bot ID. 40 40 5. Save settings and the chatbot will appear on your website. … … 46 46 47 47 = Can I use it with any WordPress theme? = 48 Yes, HashtechyChatbot works with all WordPress themes.48 Yes, Ezee Chatbot works with all WordPress themes. 49 49 50 50 = Does it support mobile devices? = 51 Yes, the chatbot is fully responsive and works on mobile, tablet and desktop.51 Yes, the chatbot is fully responsive and works on mobile, tablet, and desktop. 52 52 53 53 = Is the chatbot customizable? = … … 62 62 == Upgrade Notice == 63 63 64 = 1.0 =65 Initial release of Hashtechy Chatbot.64 = 1.0.1 = 65 Rebranded to Ezee Chatbot with UI improvements and performance enhancements. 66 66 67 67 == Changelog == 68 68 69 = 1.0 = 69 = 1.0.1 = 70 * Rebranded plugin to Ezee Chatbot 71 * Improved admin UI 72 * Added data migration support 73 * Performance improvements 74 75 = 1.0.0 = 70 76 * Initial plugin release 71 77 * Chatbot integration system 72 78 * Admin settings panel 73 79 * Analytics counter 74 75 == Screenshots ==76 1. Chatbot UI77 2. Admin Settings78 3. Analytics Dashboard -
hashtechy-chatbot/trunk/uninstall.php
r3478021 r3484472 2 2 if (!defined('WP_UNINSTALL_PLUGIN')) exit; 3 3 4 // ✅ Delete OLD data (backward compatibility) 4 5 delete_option('hashtechy_chatbot_settings'); 5 6 delete_option('hashtechy_chatbot_count'); 7 8 // ✅ Delete NEW data (Ezee Chatbot) 9 delete_option('ezee_chatbot_settings'); 10 delete_option('ezee_chatbot_count');
Note: See TracChangeset
for help on using the changeset viewer.