ATS Live Chat self-updates
Self-hosted WordPress live chat plugin with WooCommerce context and optional AI
by ATS · github.com/protorox/ats-ai-live-chat-wordpress · website
★ 0stars
0forks
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/protorox/ats-ai-live-chat-wordpress/archive/refs/heads/main.zipShips its own WordPress updater (built-in updater), so new versions show up under Dashboard → Updates.
ATS AI Live Chat for WordPress
A lightweight WordPress live chat plugin with:
- Floating front-end chat widget
- Admin settings page
- Business hours and online/offline logic
- Offline message capture
- Email notifications
- Avada-friendly styling and responsive behavior
- GitHub release-based updates for WordPress
Install
- Download the repository zip from GitHub, or clone it into your WordPress plugins directory.
- Place the plugin in
wp-content/plugins/. - Activate
ATS Live Chatin WordPress. - Configure it from the
ATS Live Chatadmin menu.
Main Plugin File
ats-ai-live-chat.php
GitHub Updates
This plugin can update from GitHub releases when it is installed as the ats-ai-live-chat-wordpress plugin folder in WordPress.
How it works:
- WordPress checks the latest GitHub release for
protorox/ats-ai-live-chat-wordpress. - The plugin looks for a release asset named
ats-ai-live-chat-wordpress.zip. - If the release version is newer than the installed plugin version, WordPress can update it.
Release process:
- Bump the
Versioninats-ai-live-chat.php. - Commit and push to
main. - Create and push a tag matching the plugin version, for example
v1.0.2. - GitHub Actions builds
ats-ai-live-chat-wordpress.zipand attaches it to the release.
Example:
git tag v1.0.2
git push origin main --tags
Optional private-repo support in wp-config.php:
define( 'ATSLC_GITHUB_TOKEN', 'github_token_here' );
define( 'ATSLC_GITHUB_REPO_OVERRIDE', 'your-user/your-private-repo' );