Title: Vago Chat
Author: Themezinho Premium WordPress Themes
Published: <strong>जुलाई 20, 2026</strong>
Last modified: जुलाई 20, 2026

---

प्लगिनहरू खोज्नुहोस्

![](https://ps.w.org/vago-chat/assets/banner-772x250.png?rev=3615634)

![](https://ps.w.org/vago-chat/assets/icon-256x256.png?rev=3615634)

# Vago Chat

 [Themezinho Premium WordPress Themes](https://profiles.wordpress.org/biribazu/)
द्वारा

[डाउनलोड गर्नुहोस्](https://downloads.wordpress.org/plugin/vago-chat.1.0.0.zip)

 * [विवरण](https://ne.wordpress.org/plugins/vago-chat/#description)
 * [समीक्षाहरू](https://ne.wordpress.org/plugins/vago-chat/#reviews)
 *  [स्थापना](https://ne.wordpress.org/plugins/vago-chat/#installation)
 * [विकास](https://ne.wordpress.org/plugins/vago-chat/#developers)

 [सहायता](https://wordpress.org/support/plugin/vago-chat/)

## विवरण

Vago Chat adds a front-end chat widget to your site and a real-time
 agent dashboard,
so you can talk to visitors as they browse — and turn those conversations into sales.

**Chat & CRM**

 * Front-end chat widget with a proactive greeting, quick-reply buttons, emoji picker,
   and file/image attachments.
 * Real-time agent dashboard: conversation list, live visitor monitoring, and one-
   click invites to visitors currently browsing.
 * CRM pipeline per conversation: lead status (new/contacted/qualified/won/lost),
   assignment to a specific team member, contact info, tags, private notes, and 
   a visitor’s previous session history.
 * Live typing preview — see what a visitor is typing before they hit send.
 * Right-click a conversation to move it to trash, delete it permanently, or block
   the visitor.

**Automation**

 * Canned responses and a keyword-matched FAQ auto-bot that answers common questions
   instantly and hands off to a human for anything it doesn’t recognize.
 * Smart proactive triggers: automatically message a visitor after N seconds on 
   a page, based on their traffic source, or once their WooCommerce cart reaches
   a value you set.

**Sales (WooCommerce)**

 * Agents can search your product catalog from the reply box and send a rich product
   card (photo, price, “Add to cart” button) straight into the chat.
 * One-click “Send checkout link” button for visitors who are ready to buy.

**Reports**

 * A GA-style Reports view: a trend chart of chats/messages over time, per-agent
   leaderboard, lead-status and channel breakdowns, average first-response time,
   and missed-chat count.

**Team & access**

 * Grant Vago Chat access to any user without making them a full site administrator(
   Settings  Members).
 * Open the exact same dashboard at a friendly URL outside of wp-admin (Settings
   External Access) — logging in there still uses your normal WordPress account,
   there is no separate login system.
 * Appearance settings let you set a brand color once and have it apply to both 
   the dashboard and the widget.

**Channels**

 * Optional Telegram integration — connect a bot token and Telegram conversations
   appear in the same dashboard alongside your website chats. (WhatsApp, Instagram,
   and Messenger all require a verified Meta Business account for API access and
   aren’t included.)

**Performance & architecture**

 * Chat data is stored in a self-contained SQLite database under `wp-content/uploads/
   vago-chat/` — no additional MySQL tables are created.
 * A companion standalone `chat-api.php` endpoint serves the widget and dashboard
   directly (bypassing `admin-ajax.php`) for lower latency; it authenticates every
   request with a random token or an origin/referrer check.
 * CSS and JS are separate enqueued files (cacheable by the browser), not inline`
   <style>`/`<script>` blocks.
 * Report queries are cached for 60 seconds and SQLite runs `PRAGMA optimize` periodically;
   a manual “Optimize database” action is available for on-demand `VACUUM`.

#### External services

This plugin uses **ip-api.com** solely to resolve a visitor’s IP address to
 an 
approximate city/country, so agents can see where a visitor is chatting from. Only
the visitor’s IP address is sent to this service, and the result is cached for 24
hours to minimize requests.

 * Service: [ip-api.com](https://ip-api.com/)
 * Data sent: the visitor’s IP address
 * When: once per visitor per 24 hours, on their first page view
 * Terms of service: https://ip-api.com/docs/legal
 * This lookup can be disabled by removing the geo lookup call in `includes/api/
   handlers-visitor.php` (`_ip_geo()`).

If you enable Web Push notifications for new chats, browser push messages
 are delivered
through your visitors’ configured push service (e.g. Google or Mozilla’s push endpoints)
using the standard, plugin-generated VAPID keys — no third-party account or API 
key is required.

If you opt in to the **Telegram** integration (Settings  Channels) by
 entering 
your own bot token, messages sent by visitors through that Telegram bot, and your
agents’ replies, are relayed through Telegram’s Bot API (api.telegram.org) — this
only happens if you’ve supplied a bot token and clicked “Connect”.

 * Service: [Telegram Bot API](https://core.telegram.org/bots/api)
 * Data sent: message text and the visitor’s Telegram chat ID
 * When: only when the Telegram integration is connected and in use
 * Terms of service: https://telegram.org/tos

## स्थापना

 1. Upload the `vago-chat` folder to `/wp-content/plugins/`, or install the zip via
    Plugins  Add New  Upload Plugin.
 2. Activate **Vago Chat** through the ‘Plugins’ screen in WordPress.
 3. A new **Vago Chat** menu item appears in your wp-admin sidebar — open it to set
    your agent name, avatar, and greeting.
 4. The chat widget will automatically appear in the front end of your site.

#### Nginx / LiteSpeed: protecting the chat database

This plugin writes a `.htaccess` file into `wp-content/uploads/vago-chat/`
 to block
direct access to the SQLite database and every `.json` file there (settings, generated
config, VAPID keys — a `.php` extension is blocked too, defensively, though nothing
in the plugin writes one). Apache and LiteSpeed (LiteSpeed reads `.htaccess` natively
for Apache compatibility) honor this automatically. **Nginx ignores `.htaccess` 
entirely** — if your site runs on Nginx, add a rule like this to your server block
so those files stay private:

    ```
    location ^~ /wp-content/uploads/vago-chat/ {
        location ~* \.(db|db-wal|db-shm|json|php)$ { deny all; return 404; }
    }
    ```

The plugin also shows an admin notice automatically when it detects Nginx.

## प्रश्नोत्तर

### Does this create new database tables?

No. Conversations, visitors, and messages are stored in a SQLite database
 file 
inside `wp-content/uploads/vago-chat/`, not in your WordPress (MySQL) database.

### Who can access the chat dashboard?

Administrators always have access. You can grant access to other users
 without 
making them administrators from Settings  Members — they get a narrow “Vago Chat
Agent” capability, nothing more.

### Can agents use the dashboard without going into wp-admin?

Yes. Settings  External Access lets you open the same dashboard at a
 short URL 
like `example.com/live-chat-agent/`. Logging in there uses wp_signon() — WordPress’s
own login function — so it’s the same authentication as wp-admin, just without the
wp-admin chrome around it.

### What happens to my data if I uninstall the plugin?

Deleting the plugin from the Plugins screen removes its settings and the
 SQLite
chat database/uploaded files. Deactivating the plugin does not delete anything.

## समीक्षाहरू

यस प्लगिनको लागि कुनै समीक्षाहरू छैनन्।

## योगदानकर्ता र डेभलपरहरू

“Vago Chat” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले यो प्लगिनमा योगदान गरेका 
छन्।

योगदानकर्ताहरू

 *   [ Themezinho Premium WordPress Themes ](https://profiles.wordpress.org/biribazu/)

[“Vago Chat” लाई आफ्नो भाषामा अनुवाद गर्नुहोस्](https://translate.wordpress.org/projects/wp-plugins/vago-chat)

### विकासमा रुचि छ?

[आरएसएस](https://plugins.trac.wordpress.org/log/vago-chat/?limit=100&mode=stop_on_copy&format=rss)
द्वारा [कोड ब्राउज गर्नुहोस्](https://plugins.trac.wordpress.org/browser/vago-chat/),
[एसभीएन रिपजिटरी](https://plugins.svn.wordpress.org/vago-chat/) हेर्नुहोस्, वा [विकास लग](https://plugins.trac.wordpress.org/log/vago-chat/)
को सदस्यता लिनुहोस्।

## चेन्जलग

#### 1.0.0

 * Initial release: real-time chat widget and agent dashboard, live visitor monitoring,
   smart proactive triggers, a keyword-matched FAQ auto-bot, a CRM pipeline with
   agent routing, WooCommerce sales quick-actions, a real-time Reports control center,
   Members/Blocklist management, an external agent portal, and an optional Telegram
   channel.

## मेटा

 *  संस्करण **1.0.0**
 *  पछिल्लो अपडेट **1 महिना अघि**
 *  सक्रिय स्थापना **१० भन्दा कम**
 *  वर्डप्रेस संस्करण ** 6.0 वा उच्च **
 *  जाँच गरिएको **7.0.4**
 *  PHP संस्करण ** 7.4 वा उच्च **
 *  भाषा
 * [English (US)](https://wordpress.org/plugins/vago-chat/)
 * ट्यागहरू
 * [chat widget](https://ne.wordpress.org/plugins/tags/chat-widget/)[crm](https://ne.wordpress.org/plugins/tags/crm/)
   [customer support](https://ne.wordpress.org/plugins/tags/customer-support/)[help desk](https://ne.wordpress.org/plugins/tags/help-desk/)
   [live chat](https://ne.wordpress.org/plugins/tags/live-chat/)
 *  [उन्नत दृश्य](https://ne.wordpress.org/plugins/vago-chat/advanced/)

## रेटिङ्गहरू

अहिलेसम्म कुनै समीक्षा पेस गरिएको छैन।

[तपाईँको समीक्षा](https://wordpress.org/support/plugin/vago-chat/reviews/#new-post)

[सबै समीक्षाहरू हेर्नुहोस्](https://wordpress.org/support/plugin/vago-chat/reviews/)

## योगदानकर्ताहरू

 *   [ Themezinho Premium WordPress Themes ](https://profiles.wordpress.org/biribazu/)

## सहायता

केही भन्नु छ? सहयोग चाहियो?

 [सहायता फोरम हेर्नुहोस्](https://wordpress.org/support/plugin/vago-chat/)