Plugin Directory

Changeset 3484472


Ignore:
Timestamp:
03/17/2026 06:17:37 AM (2 weeks ago)
Author:
hashtechy
Message:

Rebranding to Ezee chatbot

Location:
hashtechy-chatbot/trunk
Files:
1 added
1 deleted
5 edited

Legend:

Unmodified
Added
Removed
  • hashtechy-chatbot/trunk/assets/js/admin.js

    r3478021 r3484472  
    11jQuery(document).ready(function($){
    2     console.log("Hashtechy Admin Loaded");
     2    console.log("Ezee Chatbot Admin Loaded");
    33});
  • hashtechy-chatbot/trunk/assets/js/frontend.js

    r3478021 r3484472  
    11document.addEventListener("DOMContentLoaded", function() {
    22
    3     if (!hashtechyChatbot.settings) return;
     3    if (!ezeeChatbot .settings) return;
    44
    5     const data = hashtechyChatbot.settings;
     5    const data = ezeeChatbot .settings;
    66
    77    if (!data.enabled || !data.script_url || !data.bot_id) return;
     
    1414    document.body.appendChild(script);
    1515
    16     fetch(hashtechyChatbot.ajax_url, {
     16    fetch(ezeeChatbot .ajax_url, {
    1717        method: "POST",
    1818        headers: {"Content-Type":"application/x-www-form-urlencoded"},
    19         body: "action=hashtechy_chatbot_hit"
     19        body: "action=ezee_chatbot_hit"
    2020    });
    2121});
  • hashtechy-chatbot/trunk/hashtechy-chatbot.php

    r3484421 r3484472  
    11<?php
    22/*
    3 Plugin Name: Hashtechy Chatbot
     3Plugin Name: Ezee Chatbot
    44Plugin URI: https://www.ezeechatbot.com/
    55Description: Modern AI Chatbot with Analytics & Premium Admin UI.
    6 Version: 1.0.0
     6Version: 1.0.1
    77Author: Hashtechy
    88Requires at least: 5.8
    99Requires PHP: 7.4
    1010License: GPL v2 or later
    11 text-domain: hashtechy-chatbot
     11Text Domain: ezee-chatbot
    1212*/
    1313
    1414if (!defined('ABSPATH')) exit;
    1515
    16 define('HASHTECHY_CHATBOT_PATH', plugin_dir_path(__FILE__));
    17 define('HASHTECHY_CHATBOT_URL', plugin_dir_url(__FILE__));
     16define('EZEE_CHATBOT_PATH', plugin_dir_path(__FILE__));
     17define('EZEE_CHATBOT_URL', plugin_dir_url(__FILE__));
    1818
    19 require_once HASHTECHY_CHATBOT_PATH . 'includes/class-hashtechy-chatbot.php';
     19require_once EZEE_CHATBOT_PATH  . 'includes/class-ezee-chatbot.php';
    2020
    21 new Hashtechy_Chatbot();
     21new Ezee_Chatbot();
  • hashtechy-chatbot/trunk/readme.txt

    r3478169 r3484472  
    1 === Hashtechy Chatbot ===
     1=== Ezee Chatbot ===
    22Contributors: hashtechy
    3 Donate link: https://hashtechy.com
     3Donate link: https://www.ezeechatbot.com/
    44Tags: chatbot, ai chatbot, support chatbot, live chat
    55Requires at least: 5.8
    66Tested up to: 6.9.1
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    1414== Description ==
    1515
    16 Instant AI chatbot for WordPress with modern UI, analytics, and easy integration.
     16Ezee Chatbot is a modern AI-powered chatbot plugin for WordPress that helps you automate customer support, generate leads, and enhance user engagement.
    1717
    1818Key Features:
     
    2020* Modern chatbot UI
    2121* Easy integration using script
    22 * Real-time analytics
    23 * Lightweight and fast
     22* Real-time analytics dashboard
     23* Lightweight and fast performance
    2424* Works with any WordPress theme
    2525* No coding required
     
    2929* Business websites
    3030* SaaS platforms
    31 * Customer support
     31* Customer support automation
    3232* Lead generation
    3333
     
    36361. Upload the plugin files to the `/wp-content/plugins/hashtechy-chatbot` directory, or install via the WordPress plugin installer.
    37372. Activate the plugin through the **Plugins** screen in WordPress.
    38 3. Open **Hashtechy Chatbot Settings** from the admin menu.
     383. Open **Ezee Chatbot Settings** from the admin menu.
    39394. Add your chatbot script URL or Bot ID.
    40405. Save settings and the chatbot will appear on your website.
     
    4646
    4747= Can I use it with any WordPress theme? =
    48 Yes, Hashtechy Chatbot works with all WordPress themes.
     48Yes, Ezee Chatbot works with all WordPress themes.
    4949
    5050= Does it support mobile devices? =
    51 Yes, the chatbot is fully responsive and works on mobile, tablet and desktop.
     51Yes, the chatbot is fully responsive and works on mobile, tablet, and desktop.
    5252
    5353= Is the chatbot customizable? =
     
    6262== Upgrade Notice ==
    6363
    64 = 1.0 =
    65 Initial release of Hashtechy Chatbot.
     64= 1.0.1 =
     65Rebranded to Ezee Chatbot with UI improvements and performance enhancements.
    6666
    6767== Changelog ==
    6868
    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 =
    7076* Initial plugin release
    7177* Chatbot integration system
    7278* Admin settings panel
    7379* Analytics counter
    74 
    75 == Screenshots ==
    76 1. Chatbot UI
    77 2. Admin Settings
    78 3. Analytics Dashboard
  • hashtechy-chatbot/trunk/uninstall.php

    r3478021 r3484472  
    22if (!defined('WP_UNINSTALL_PLUGIN')) exit;
    33
     4// ✅ Delete OLD data (backward compatibility)
    45delete_option('hashtechy_chatbot_settings');
    56delete_option('hashtechy_chatbot_count');
     7
     8// ✅ Delete NEW data (Ezee Chatbot)
     9delete_option('ezee_chatbot_settings');
     10delete_option('ezee_chatbot_count');
Note: See TracChangeset for help on using the changeset viewer.