Gobot – Sales Boosting Chatbot
Over 10,000 companies of all sizes use Gobot to automatically generate qualified leads, answer customer questions, help visitors find the perfect product/service, collect customer feedback, send personalized emails, schedule appointments, and much more – no programming skills needed. There have been millions of questions answered, leads generated, and meetings booked by Gobot. Gobot helps you grow your sales, automatically answer customer questions, get more email subscribers, book meetings, and more by engaging your website visitors at just the right time and place! Use one of our 100+ popular bot templates or easily create your own bot using our drag n’ drop bot builder – no programming skills needed! Gobot’s integration with WordPress means you will be up and running in under a minute. Visitors who chat with a Gobot conversational shopping bot are far more likely to make a purchase online than those who don’t. Help shoppers find the perfect product, quickly grow your email list, boost your conversion rate, and automatically book qualified meetings, all in real time, with a virtual sales assistant that generates new opportunities 24/7. Instantly answer questions, reduce ticket volume, and boost customer satisfaction. Increase customer satisfaction by automatically answering customer’s common questions. Instantly identify & respond to new questions, or automatically hand-off to your existing support tool as needed. Gather actionable feedback & data with conversational chatbot forms and surveys. Transform feedback & data collection into a real-time, conversational experience. Ask the right questions at the right time, and automatically ask personalized, intelligent follow-up questions. How does Gobot work? Pick from 100+ pre-built plug n’ play bot templates or use Gobot’s intuitive and simple drag n’ drop builder to easily build chatbots that match your store’s style. Click Publish and your bot appears on your site and engages your visitors! Your bot can be up and running in under a minute. Match colors, add your logo, set the position, and change to your native language. Easily connect Gobot to your existing help desk, CRM, live chat tool, email marketing tool, and much more. Analyze your bot’s chats, visualize where people are dropping off, view email conversion rate, download a CSV of collected user responses, study survey results, and much more. Advanced Page Level Targeting and Behavior Personalization Gobot allows you to create a highly targeted message based on the specific page or traffic referral source your visitor followed to arrive at your site. This allows you to segment your email list and group your subscribers based on their interest and interaction with your website. Segmentation allows you to send relevant emails to your subscribers to achieve higher open rates, higher click through rates, increased sales and revenue, greater customer retention, and a lower unsubscribe rate. Gobot can also be triggered when your visitors scroll to a particular spot on your website or at the precise moment your visitors are about to leave. This allows you to re-engage visitors and encourage subscription. Full Features List: 100+ bot templates (responsive & mobile-friendly) Automatically answer customer questions & create a knowledge base Built-in email marketing & automation features Use webhooks to send collected data to any tool you use Poll functionality for polling your visitors 0-10 Surveys for gauging level of satisfaction with your site Form functionality with CSV output to spreadsheets Calendar functionality for scheduling calls and meetings Social buttons for promoting shares/likes/follows Powerful page level targeting to build a hyper-segmented email list Custom analytics to tell you which bots are converting the best Exit sensitive triggered bots for converting abandoning website visitors into subscribers and customers Scroll-triggered & geographic location-specific bots for enhanced conversion rates Timed bots – display opt-ins after a certain time or on second pageview Automatically tag particular visitors for follow-up Easy integration with popular email marketing service providers Color & style match your brand Join 10,000+ other companies and add Gobot to your store today. Start automatically answering customer questions, generating qualified leads, helping shoppers find the perfect product, collecting customer feedback, sending personalized emails, scheduling appointments, and much more – no programming skills needed. Gobot is a trademark of Gobot LLC.
Top keywords
- gobot13×1.91%
- customer10×1.47%
- questions10×1.47%
- visitors10×1.47%
- automatically9×1.32%
- bot9×1.32%
- email8×1.17%
- allows4×0.59%
- answer4×0.59%
- bots4×0.59%
- customer questions4×0.59%
- feedback4×0.59%
NS Chat
NS Chat Plugin enables real-time communication between WordPress users using WebSocket technology, powered by the Workerman library. Key Features: * Real-time private chat between users * Visual unread message indicators * Persistent chat history stored in the database * Lightweight modular JS + PHP architecture * Automatic migration and sync of WP users to chat system * Linux daemon service with SSL support for secure connections * Future-ready integration with NFS or AWS S3 for file upload/download Planned Features: * Message editing and deletion * Read receipt indicators (message seen) * File attachments with optional NFS or AWS S3 integration Ideal for community websites, intranets, or any platform requiring internal messaging without third-party services. For integration help or consulting on adapting the plugin to your project, contact the developer at:
[email protected] WebSocket Server Setup (Linux with SSL) Create a systemd service file: bash sudo vim /etc/systemd/system/websocket_server.service Paste the following content: bash [Unit] Description=WebSocket Server for NS Chat (SSL) After=network.target [Service] ExecStart=/usr/bin/php /file/to/path/yourdomain/wp-content/plugins/ns-chat/server.php start Restart=always RestartSec=25 User=www-data Group=www-data StandardOutput=file:/var/log/websocket_server.out.log StandardError=file:/var/log/websocket_server.err.log [Install] WantedBy=multi-user.target Add SSL context in server.php: php $context = [ 'ssl' => [ 'local_cert' => '/path/to/file.crt', 'local_pk' => '/path/to/file.key', 'verify_peer' => false, ] ]; Set permissions for plugin folder: bash sudo chown -R www-data:www-data /path/to/ns-chat/ sudo chmod -R 775 /path/to/ns-chat/ Reload and start the daemon: bash sudo systemctl daemon-reload sudo systemctl enable websocket_server --now sudo systemctl restart websocket_server sudo systemctl status websocket_server Check logs if needed: bash /var/log/websocket_server.out.log /var/log/websocket_server.err.log Custom Port Configuration By default, the WebSocket server listens on port 2346. To use a different port: Change the port in server.php: php $wsWorker = new Worker('websocket://0.0.0.0:2346', $context); Change the port in ns-chat.php: php $ws_port = 2346; You can check and change the port in chat-ui.js: js const port = nschat_data.wsPort || 2346; If the port is closed, then open a new port on your server’s firewall: bash sudo ufw allow /tcp sudo firewall-cmd --permanent --add-port= /tcp sudo firewall-cmd --reload sudo iptables -A INPUT -p tcp --dport -j ACCEPT sudo iptables-save > /etc/iptables/rules.v4 Database Tables The plugin creates and uses the following tables: wp_ns_chat_dialogues wp_ns_chat_messages wp_ns_chat_users Tables are created and populated automatically on plugin activation. User Synchronization Initial migration of all users from wp_users to wp_ns_chat_users on plugin activation. New registrations are handled by: php add_action('user_register', 'ns_chat_add_user_on_registration'); Profile updates are synced via: php add_action('profile_update', 'ns_chat_update_user_data'); You may bind these functions to custom hooks based on your app’s logic. License GPLv2 or later