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?
Give a try to <a href="https://www.uxwizz.com" rel="nofollow noreferrer">https://www.uxwizz.com</a>, it has a free trial.<p>It has a visual A/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://i.snipboard.io/3W172P.jpg" rel="nofollow noreferrer">https://i.snipboard.io/3W172P.jpg</a><p>The A/B test is still a new feature, but it'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.
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.