The Tidio alternative.

Built around your software. Give customer questions, reported bugs and feature ideas one connected home. Gleap brings AI support into your app and carries customer context into product work.

4.6/5 on G2
Trusted by 4,500+ teams worldwide
Trusted by 4,500+ teams, from startups to global businesses
HiHow can we help you today?
Ask me anything…
Report an issueRequest a feature
Meet your new storefrontA fresh look for your next big idea.
Home Messages News Roadmap Help
Checkout does nothing after coupon
#146960 Replay Env data Logs Custom data
Description
Checkout does nothing after I add a coupon. Tried twice.
Screenshot app.lumenhq.com/checkout SPRING20 Checkout Something went wrong
Translate · Today at 10:41 ·
Today
  1. 10:41 AM
    Working · watching the replay
  2. 10:46 AM
    Confirmed bug
    applyCoupon resets the cart before POST /orders/confirm, so the request fails with cart_expired.
    Ask for changes Fix with Kai Code
ReplyNoteAsk Kai Copilot
Hey Tobias,TAB
Send

Roadmap

See what we’re working on and what’s coming next.

Planned 31

Richer Jira (and Linear) Sync: Link, Track, and Customize Issues from Gleap

Also, other setting for integration would be nice: - set labels for tickets (like environment label) - set reporter, maybe we can identify the user and have it as reporter (this tool is used by internal employees) - define a description template for Jira ticket

Auto-detect host app dark/light mode for Gleap widget theme

Auto-detect host app dark/light mode for Gleap widget theme Customer asks if Gleap can detect whether the app (or widget host) is in dark mode or light mode and automatically switch the widget theme accordingly.

Add support for regional public holidays in operating hours settings

Add support for regional public holidays in operating hours settings Select Public Holiday for our Federal State. And create custom holiday for our company e.g. company party.

In progress 2

Team working hours

Set availability per agent and route conversations by working hours.

Bulk CSV export

Export tickets and contacts in one go.

Released 43

Tables in Knowledge Base

How can I insert a table in Gleap KB editor? I need to insert pricing...

Send Later + Undo Send for Support Replies (with scheduling)

Hello, it happens that customer tickets are being handled from our team.

Gleap widget apps

Add the ability to support custom widget apps.

Kai Code picked up this ticket GleapSDK/Desktop
  1. Planning · reading the ticket and src/drawer
  2. 10:44
    Plan proposed
    Listen for new notifications.
  3. 10:46
    Plan approved by Lukas
  4. Working · editing src/drawer/Notifications.tsx
  5. 11:07
  6. 14:03
  7. 14:05
    Customer notified reply sent to Rami
Follow the question, the bug and the feature request.
Compare plans
Choose for your product. Tidio combines help desk, Lyro AI and Flows for support and sales. Gleap adds native technical reports, a public roadmap and a connected engineering workflow for software teams.
Compare the foundation.
USD monthly base subscriptions. Different features and services; usage, add-ons and taxes excluded.
Gleap Team
$179 / month
Unlimited seats and projects. $149/month with annual billing.
Shared inbox and Kai customer answers
Native web and mobile bug reporting
Feedback, roadmap and changelog
AI usage through prepaid credits
Start 14-day free trial
Unlimited seats
Tidio Plus
From $300 / month
Plus base fee, with monthly usage extra. Free, Starter and Growth cost less.
Help desk, Lyro and Flows options
Custom seats and multiproject
Priority support and success manager
AI and human conversation usage
See comparison details

Meet your AI team.

Answer customers. Investigate issues. Build what comes next. Kai is available on every plan; Resolve, Code and PM are included in Pro and Enterprise. AI usage is billed separately.

Kai

Answers customers

Answers from your knowledge base and connected sources. Brings your team in when needed.

Meet Kai

Kai Resolve

Investigates hard tickets

Reads session evidence, logs and code. Returns findings and creates coding tasks for confirmed bugs.

Meet Kai Resolve

Kai Code

Builds the fix

Plans the change, writes and tests code, and opens a pull request. Your engineers review and merge.

Meet Kai Code

Kai PM

Prioritizes requests

Triages feedback, finds duplicates and scores requests. You decide what belongs on the roadmap.

Meet Kai PM

Help inside your application.

One place to ask.
Let customers find answers, contact your team, report a bug or request a feature from the widget. Start with the support options your product needs.
Explore live chat
HiHow can we help you today?
Ask me anything…
Report an issueRequest a feature
Meet your new storefrontA fresh look for your next big idea.
Home Messages News Roadmap Help
app.lumenhq.com/checkout SPRING20 Checkout Something went wrong

Understand the reported bug.

Capture the useful details.
Bring a marked screenshot, available replay and logs into the customer ticket. Engineers can inspect the interaction and ask follow-up questions with the evidence close by.
Explore bug reporting

Keep good ideas connected.

A roadmap with customer context.
Collect requests and votes alongside support. Choose what belongs in the product, then share progress and released changes with the people who asked.
Explore product feedback

Roadmap

See what we’re working on and what’s coming next.

Planned 31

Richer Jira (and Linear) Sync: Link, Track, and Customize Issues from Gleap

Also, other setting for integration would be nice: - set labels for tickets (like environment label) - set reporter, maybe we can identify the user and have it as reporter (this tool is used by internal employees) - define a description template for Jira ticket

Auto-detect host app dark/light mode for Gleap widget theme

Auto-detect host app dark/light mode for Gleap widget theme Customer asks if Gleap can detect whether the app (or widget host) is in dark mode or light mode and automatically switch the widget theme accordingly.

Add support for regional public holidays in operating hours settings

Add support for regional public holidays in operating hours settings Select Public Holiday for our Federal State. And create custom holiday for our company e.g. company party.

In progress 2

Team working hours

Set availability per agent and route conversations by working hours.

Bulk CSV export

Export tickets and contacts in one go.

Released 43

Tables in Knowledge Base

How can I insert a table in Gleap KB editor? I need to insert pricing...

Send Later + Undo Send for Support Replies (with scheduling)

Hello, it happens that customer tickets are being handled from our team.

Gleap widget apps

Add the ability to support custom widget apps.

Isabella Berger2:15 PM
Survey notifications never arrive for visitors who are not logged in. Chat notifications work fine.
  1. 2:16 PM
    Working · reading the console logs
  2. 2:21 PM
    Found a likely bug
    Survey pushes skip anonymous visitors: sendSurveyPush returns early without a contact email. Delivery only needs the session's subscription.
    Ask for changes Fix with Kai Code

Give investigation a next step.

Findings stay with the ticket.
Kai Resolve investigates available logs, session evidence and code. On Pro, confirmed bugs can become coding tasks without losing the original report.
Explore Kai Resolve

Create a reviewable change.

Your team decides what ships.
Kai Code plans and implements changes from the customer issue. Engineers review the pull request and control the merge and release.
Explore Kai Code
3 changed files +84 −12 PR #412
  • Notifications.tsx +61−9
  • useNotificationSocket.ts +19−3
  • Notifications.test.tsx +4−0
src/drawer/Notifications.tsx
  @@ -42,7 +42,15 @@ NotificationsDrawer  const { items } = useNotifications();− useEffect(() => { if (open) refetch(); });+ const socket = useNotificationSocket();+ useEffect(() => {+   if (!open) return;+   return socket.on('notification:new',+     (n) => setItems((p) => [n, ...p]));+ }, [open, socket]);  return <Drawer open={open}>
An essential part of the development process.
“Gleap helps us to fix bugs in no time and build real customer relationships.”
Mark Breuß
Founder, MARK.ONE
Your switching questions, answered. SaaS fit, AI billing, mobile support and product work.
Build from customer context.
4.6/5
on G2