Title: GRT Ticket
Author: ridhwanahsann
Published: <strong>2026 年 2 月 15 日</strong>
Last modified: 2026 年 3 月 12 日

---

搜索插件

![](https://ps.w.org/grt-ticket/assets/banner-772x250.png?rev=3462619)

![](https://ps.w.org/grt-ticket/assets/icon-256x256.png?rev=3462560)

# GRT Ticket

 作者：[ridhwanahsann](https://profiles.wordpress.org/ridhwanahsann/)

[下载](https://downloads.wordpress.org/plugin/grt-ticket.1.2.4.zip)

 * [详情](https://cn.wordpress.org/plugins/grt-ticket/#description)
 * [评价](https://cn.wordpress.org/plugins/grt-ticket/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/grt-ticket/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/grt-ticket/#developers)

 [支持](https://wordpress.org/support/plugin/grt-ticket/)

## 描述

**Note on Minified JS**: The `public/js/supabase.js` file is a minified build of
the Supabase JS client. Source code available at: https://github.com/supabase/supabase-
js

### Features

 * **Webhooks & Integrations (New!)**: Send notifications to **Slack**, **Discord**,
   or **Zapier** when a new ticket is created.
 * **Supabase Integration**: True real-time chat powered by Supabase Realtime DB(
   optional)
 * **Guest Access (New!)**: Guests can view and reply to their tickets immediately
   after submission via secure cookie (no login required).
 * Create and manage tickets from WordPress admin and frontend
 * Real-time chat between users and admins
 * **Custom Fields Builder**: Create custom forms with Text, Textarea, Number, Email,
   URL, Select, and Date fields
 * **Advanced Search**: Filter tickets by User Name or Ticket ID instantly
 * **Guest Ticket Submission**: Users can submit tickets without an account (secure
   cookie access)
 * **User Profile**: Users can manage their profile and upload avatars
 * Auto-Assignment: Automatically assign tickets to agents based on category
 * Agent Performance: View stats on agent performance and ticket resolution
 * Email Piping: User replies via email are automatically added to ticket chat
 * Email Notifications: Chat replies are sent to user email (with direct frontend
   links)
 * IMAP/SMTP settings configurable via plugin settings
 * Secure input handling and WordPress coding standards compliant
 * Fully GPL-2.0 compatible

### External Services

This plugin integrates with the following third-party services:

### 1. Twilio (Optional)

 * **Service**: Twilio API (WhatsApp & SMS)
 * **Usage**: Sends notifications to admins and users via WhatsApp or SMS.
 * **Data Sent**: Message content, phone numbers.
 * **Privacy Policy**: [Twilio Privacy Policy](https://www.twilio.com/legal/privacy)

### 2. Supabase (Optional)

 * **Service**: Supabase Realtime
 * **Usage**: Provides real-time chat capabilities.
 * **Data Sent**: Chat messages, user IDs (for authentication).
 * **Privacy Policy**: [Supabase Privacy Policy](https://supabase.com/privacy)

### 3. Webhooks (Slack, Discord, Zapier)

 * **Usage**: Sends ticket data to external services for notification/automation.
 * **Data Sent**: Ticket details (title, ID, user email, message).

### Supabase Configuration (Optional for Realtime)

 1. Create a project at [Supabase](https://supabase.com).
 2. Get your **Project URL**, **Anon Key**, and **Service Role Secret**.
 3. In WordPress, go to **GRT Ticket > Settings** and enter these credentials.
 4. In Supabase SQL Editor, run this command to create the messages table:
     create 
    table public.grt_messages ( id bigint not null, ticket_id bigint not null, sender_type
    text not null, sender_name text not null, message text null, attachment_url text
    null, is_internal integer null default 0, created_at timestamp with time zone null
    default now(), constraint grt_messages_pkey primary key (id) ) TABLESPACE pg_default;
 5. **IMPORTANT**: Go to **Supabase Dashboard > Database > Publications** (or Replication)
    and enable **“grt_messages”** for Realtime. (Otherwise, no messages will be received!)
 6. Enable “Realtime Chat” in plugin settings.

## 屏幕截图

 * [[
 * [[
 * [[
 * [[
 * [[

## 安装

 1. Upload the plugin files to the `/wp-content/plugins/grt-ticket` directory, or install
    the plugin through the WordPress plugins screen directly.
 2. Activate the plugin through the ‘Plugins’ screen in WordPress.
 3. Use the Settings->GRT Ticket screen to configure the plugin.
 4. Add the shortcode `[grt_ticket]` to any page to display the ticket submission form.

## 评价

![](https://secure.gravatar.com/avatar/ce2ebcce0889a8e1e44dc3dae83c9b56b1515104a28af6220af7de1acca2fe9f?
s=60&d=retro&r=g)

### 󠀁[Simple, Powerful & Reliable Support Plugin](https://wordpress.org/support/topic/simple-powerful-reliable-support-plugin/)󠁿

 [Md. Rakib Ullah](https://profiles.wordpress.org/rakib417/) 2026 年 2 月 16 日

This plugin made setting up a support system in WordPress very easy. Everything 
works smoothly, from ticket creation to real-time chat. I especially like the guest
access feature and the clean overall experience. It feels solid, well-built, and
practical for real use. Highly recommended for anyone who needs a reliable helpdesk
solution.

 [ 阅读所有1条评价 ](https://wordpress.org/support/plugin/grt-ticket/reviews/)

## 贡献者及开发者

「GRT Ticket」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ ridhwanahsann ](https://profiles.wordpress.org/ridhwanahsann/)

[帮助将「GRT Ticket」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/grt-ticket)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/grt-ticket/)，查看[SVN仓库](https://plugins.svn.wordpress.org/grt-ticket/)，
或通过[RSS](https://plugins.trac.wordpress.org/log/grt-ticket/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/grt-ticket/)。

## 更新日志

#### 1.2.4

 * UI: Improved admin dashboard layout and visuals.
 * UI: Enhanced user ticket submission form styling.
 * UI: Refined user chat interface design and responsiveness.

#### 1.1.4

 * Security: Removed all user creation and auto-login functionality to prevent security
   risks.
 * Security: Implemented secure cookie-based access for guest tickets.
 * Security: Fixed escaping issues in shortcodes and admin pages.
 * Security: Added missing nonces and permission checks in AJAX handlers.
 * Fix: Removed debug.log and added source code documentation for minified JS.
 * Fix: Added ‘ridhwanahsann’ to contributors list.

#### 1.1.3

 * Minor bug fixes and performance improvements.

#### 1.1.2

 * Feature: **Webhooks & Integrations** – Added support for Slack, Discord, and 
   Zapier notifications.
 * Feature: **Guest Access** – Implemented secure cookie-based access for guests(
   no login required to view own ticket).
 * Improvement: Updated email notifications to include direct frontend links to 
   tickets.
 * Improvement: Added “Webhooks & Integrations” tab in Settings.

#### 1.1.1

 * Improvement: Updated documentation and README.
 * Improvement: Minor UI tweaks.

#### 1.1.0

 * Feature: Added **Supabase Realtime Integration** for instant chat updates without
   polling.
 * Feature: Hybrid architecture (WordPress DB for storage + Supabase for realtime
   sync).
 * Improvement: Added “Test Connection” buttons for Supabase (Read/Write).
 * Improvement: Secure Service Role handling in settings.
 * Fix: Solved profile image upload issues.
 * Fix: Resolved redirect 404 error after ticket submission.

#### 1.0.8

 * Feature: Added Advanced Search Filter in Tickets List (Search by Name or Ticket
   ID).
 * Feature: Introduced Custom Fields Builder for ticket submission forms.
 * Improvement: Enhanced ticket list query performance.

#### 1.0.7

=
 * Fix: Browser notifications now trigger even when the tab is active.

#### 1.0.6

 * Feature: Added Profile Tab in the chat sidebar.
 * Feature: Implemented Profile Image Upload functionality.
 * UI: Improved sidebar navigation.
 * UI: Added camera overlay effect for profile image upload.

#### 1.0.5

 * Feature: Added automatic ticket assignment to agents based on issue category.
 * Feature: Added “Agent Performance” widget to the admin dashboard.
 * Feature: Implemented email notifications for agents.
 * Improvement: Enhanced dashboard UI.

#### 1.0.4

 * UI Improvements: Enhanced login form styling.
 * Security: Improved password handling for guest ticket submissions.
 * Fix: Minor bug fixes and performance improvements.

#### 1.0.3

 * UI Improvements: Updated ticket form layout and styling.
 * Added guest ticket submission with auto-account creation.
 * Improved email piping and notifications.

#### 1.0.0

 * Initial release.

## 额外信息

 *  版本 **1.2.4**
 *  最后更新：**4 周前**
 *  活跃安装数量 **不到10**
 *  WordPress 版本 ** 5.0 或更高版本 **
 *  已测试的最高版本为 **6.9.4**
 *  语言
 * [English (US)](https://wordpress.org/plugins/grt-ticket/)
 * 标签
 * [chat](https://cn.wordpress.org/plugins/tags/chat/)[helpdesk](https://cn.wordpress.org/plugins/tags/helpdesk/)
   [support](https://cn.wordpress.org/plugins/tags/support/)[ticket](https://cn.wordpress.org/plugins/tags/ticket/)
   [webhooks](https://cn.wordpress.org/plugins/tags/webhooks/)
 *  [高级视图](https://cn.wordpress.org/plugins/grt-ticket/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  1 条 5 星评价     ](https://wordpress.org/support/plugin/grt-ticket/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/grt-ticket/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/grt-ticket/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/grt-ticket/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/grt-ticket/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/grt-ticket/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/grt-ticket/reviews/)

## 贡献者

 *   [ ridhwanahsann ](https://profiles.wordpress.org/ridhwanahsann/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/grt-ticket/)