TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: How do you A/B test your landing page?

1 pointsby rdalmost 2 years ago
I've been trying to optimize my side-hustle's landing page for better conversions, and it's been difficult so I'm rolling my own solution w/ some hacky Google Analytics analysis. Curious to hear what solutions other folks are using?

2 comments

XCSmealmost 2 years ago
Give a try to <a href="https:&#x2F;&#x2F;www.uxwizz.com" rel="nofollow noreferrer">https:&#x2F;&#x2F;www.uxwizz.com</a>, it has a free trial.<p>It has a visual A&#x2F;B test editor, where you can edit text and create different variants of your copy, then you can see when the users convert, which copy did better.<p><a href="https:&#x2F;&#x2F;i.snipboard.io&#x2F;3W172P.jpg" rel="nofollow noreferrer">https:&#x2F;&#x2F;i.snipboard.io&#x2F;3W172P.jpg</a><p>The A&#x2F;B test is still a new feature, but it&#x27;s still really useful to test different copy, especially when you combine it with heatmaps or session recordings, so you can see exactly how visitors interacted with the different version.
squeegee_screamalmost 2 years ago
One simple solution I used was to add a database table that tracks which experiment the user went down.<p>`create table user_experiment (UserId int references users(userId), experiment varchar(30));`<p>Later, once I have enough data, I can compare which experiment was the best performing.