Tagged: a/b testing, landingspage, plugin
Hello,
I’m trying to find the right tool/plugin to A-B test landingspages that work with Enfold/ the Avia builder. Does the Enfold team have any tips/experience regarding these tools?
I tried to find a sollution but most of these AB test pulgins come with their own pagebuilder, and I don’t want to use another pagebuilder tool since we have the avia builder running anyway.
Hey Telepsy_NL,
Thank you for your patience, but I have not tried any AB or split testing plugins, and I don’t recall any threads about this in the past. I imagine it depends on how much info you would like to gather from your testing which could be pretty deep, but for some basic testing you could use some jQuery like this to randomize the url of an element click:
(function($) {
$(document).ready(function(){
$('#intro').click(function(){
if(Math.random() > 0.5) {
window.location.href = "https://your-site.com/portfolio/";
} else {
window.location.href = "https://your-site.com/elements/";
}
});
});
}(jQuery));
and use Google Analytics to track the “hits”
For something more advanced I found this article about a script called Cohorts which seems promising.
Hopefully, this helps in some way.
Best regards,
Mike