Questions tagged [vwo]
24 questions
3
votes
3 answers
Regex, numbers below 20k
I'm looking for a regex to validate if numbers are below 20 000.
I can't find the right solution, I have so far this:
(^([1-9]([0-9]{0,3})|20000)$)
Which works quite ok but as soon as it gets to 10 000 it gives no matches. So I have a gap from 9…

user1717483
- 121
- 3
- 14
2
votes
2 answers
What's the point of accessing element.innerText without doing anything else in some interesting JavaScript code?
I came across this third-party analysis code known as VWO, the embedded script is interesting, and the official documentation is available here: https://help.vwo.com/hc/en-us/articles/360021306233-Volusion
Thus the interesting code in their…

Joseph
- 3,974
- 7
- 34
- 67
2
votes
2 answers
Does vwo(visual website optimizer) slow down website load time in any manner?
Visual website optimizer is a A/B testing tool which can help one site owner to analyze his site with a modified of that. It puts a simple code in your website and make a new version of your web page.Then it show one version of your webpage to 50%…

Subhajit Mitra
- 31
- 1
1
vote
1 answer
Eliminate VWO Flash of Original Content (FOOC)
When using the VWO ab/editor you have the option of editing both the css and js of the page. If you do edit the css/js of the page you will probably see a FOOC when testing out the a/b test. Obviously this is not ideal for the end user. What can you…

Vigrant
- 898
- 1
- 17
- 27
1
vote
0 answers
Adding Link (FontAwesome) to head using javascript/Jquery
I'm working at a mid sized company as an a/b tester. That being said, I only have access to CSS and JS/Jquery through our testing software we use (VWO).
I'd like to link in FontAwesome to create some quick icons for one of the tests I want to run,…

nvrwithoutacause
- 55
- 6
1
vote
0 answers
VWO data not pushed into custom dimension in GA
I have followed everything detailed in this VWO reference doc. After waiting a day, still nothing shows up in my GA custom dimensions report.
Debugging the page, nothing is showing up in the DOM as related to the custom dimension from VWO.…

Catherine Smith
- 175
- 14
1
vote
2 answers
Insert HTML with classes with Javascript/jQuery
I am trying to insert a whole block with elements using javascript. I need to place them before a a div element with the class box-group. I see the problem is the "". How can I insert this at once.
$(".box-group").before("

Bastiaan
- 9
- 3
0
votes
0 answers
VWO custom cookie exclude from experiement
Need guidance on excluding users from a VWO experiment using a custom cookie value. In this case, we would like to exclude all staff. A custom cookie was created named vwo_opt_out. How do I set up a VWO experiment to exclude anyone who has this…
0
votes
1 answer
I need help on a VWO Split URL experiment
I need some help regarding split URL testing. The issue is that the URL I need to test includes a customer id. I am trying to see how I can exclude the customer id from the URL so we can run the experiment. Including the customer ID would only…
0
votes
1 answer
Why do I have to use conditional when using JS in VWO?
I'm doing an A/B test, but I noticed that I have to change everything via JS, I just don't understand why I can't just use something like this:
document.getElementById("myDIV").style.background = "url('smiley.gif')
Here is an example of a code used…
user19276748
0
votes
2 answers
VWO Split URL test no redirect link
I'm using VWO to do some split url testing. Is there some query param you can pass in the url so it doesn't get put into the a/b test and doesn't get redirected.
For example lets say I'm running a split URL test on
mywebsite.com/a vs.…

Vigrant
- 898
- 1
- 17
- 27
0
votes
0 answers
Problems with Gradle. Cannot resolve symbol
I need to implement a new tool on my app and that tool requires a external lib. When i sync the project with a new lib in gradle i got a Cannot Resolve Symbol.
And that is the external lib whos i want:
implementation…

Flávio Costa
- 895
- 5
- 18
- 41
0
votes
1 answer
Regex Multiple Variables in url in VWO
I have over 100 tests on VWO with my commerce site. Usually, I can get the exact testing setup I need fairly quickly.
However I have a particular situation where I need to match 4 variables in a url that could appear in Random Order.
Here is how…
0
votes
1 answer
How to trigger an A/B test VWO via java script
I'm searching a solution to trigger A/B test in VWO via java script only for a special group of users. I've already found something like this:
Define Custom Visitor Segments -> Others -> JavaScript variable.
It allows to define some condition in…

Franz
- 13
- 6
0
votes
1 answer
Using VWO interface - how can I match all product URLs of a Magento site for an A/B test
I am trying to setup an A/B test using the VWO interface for a Magento site.
I would like to target all product pages, but I do not see a clear way to match every single URL.
FYI, the products are using rewrite rules,…

minlare
- 2,454
- 25
- 46