

One-click connect from your WordPress admin: install, press Connect, and the AI shopping assistant goes live on your storefront.
Rynex adds an AI chatbot and sales assistant to your WooCommerce storefront — like having ChatGPT trained on your own catalog, minus the API keys. Customers describe what they need in plain language; the AI agent recommends products from your live catalog, answers questions about shipping, sizing and stock, adds products to the cart, and guides shoppers to checkout.
Free plan included: 100 conversations per month at no cost — no credit card, no API key, no AI provider account. Connect and try it on your real catalog in minutes.
See the revenue, not just the chats. Every order driven by a conversation is attributed, so your dashboard answers the only question that matters: how much money is this assistant actually making? Most chat plugins stop at “conversations handled” — Rynex reports attributed orders and revenue per conversation.
It is a conversational commerce layer rather than a scripted chat bot: there are no decision trees to build and no keyword rules to maintain. The assistant reads your real catalog, so recommendations stay correct as prices, stock and products change.
One-click setup — install the plugin, press Connect to Rynex, done:
What the assistant does
No API keys. No surprise AI bills.
Most free AI chatbot plugins are “bring your own key”: you create an OpenAI or Google account, generate an API key, paste it into WordPress, and then pay the AI provider per message — with a bill that grows with your traffic, and a bot that stops answering when a budget cap is hit. Rynex is hosted: there is no key to create, AI usage is included in your plan, your monthly cost is predictable, and the assistant never disappears from your storefront mid-conversation.
How the free plans actually compare:
On-site AI recommendations (“You may also like”)
Beyond the chat, Rynex can embed an AI-picked product block natively on your product pages — personalized from what each shopper browses, styled to match your theme automatically, positioned by drag & drop from the dashboard. Clicks on the block flow into the same revenue attribution as the chat.
No WooCommerce? It still works. On a plain WordPress site Rynex runs as an AI chatbot for WordPress: press Connect and the assistant answers from your own content — your home page is indexed automatically, and you add pages, posts, PDFs or plain text from your Rynex dashboard. Product recommendations, add to cart, the on-site recommendations block and revenue attribution need WooCommerce; install it later and one button turns them on.
Requirements: HTTPS and WordPress 6.2+. WooCommerce stores additionally need WooCommerce 8.0+, pretty permalinks and WordPress installed at the domain root (commerce features are not available on subdirectory installs yet).
This plugin connects your store to the Rynex platform (api.rynex.io), operated by Rynex. It is required for everything the plugin does — without a Rynex connection the plugin is inert.
What is sent and when:
ShopAgentConfig.trackingConsent = false disables both the stored ID and the browsing signal. WooCommerce stores only: order and product webhooks are sent to Rynex for catalog freshness and revenue attribution.Rynex terms of service: https://rynex.io/terms — privacy policy: https://rynex.io/privacy
Since 2.6.0 the plugin fires WordPress actions for Rynex events, so automation plugins (FluentCRM, Uncanny Automator…) and custom code can react to what happens in the assistant — no polling, no API key.
Add a captured shopper to FluentCRM in three lines:
add_action( 'rynex_contact_captured', function ( $data, $meta ) {
FluentCrmApi( 'contacts' )->createOrUpdate( array( 'email' => $data['email'] ) );
}, 10, 2 );
Every event also fires the generic hook: add_action( 'rynex_event', fn( $type, $data, $meta ) => ..., 10, 3 ). Event types: contact.captured, consent.granted, consent.revoked, order.attributed, order.reversed, conversation.completed, handover.requested, handover.completed, journey.email_sent. Deliveries are HMAC-signed by Rynex and verified before any hook fires; $meta['delivery_id'] deduplicates retries. Pause the bridge any time from the settings page.