Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Analytics Content Experiments: Possible to setup Variations for Multiple Pages at once?

Tags:

I've recently learned about the new Google Analytics Content Experiments which looks interesting. ( http://analytics.blogspot.nl/2012/06/helping-to-create-better-websites.html )

The standard usecase seems to be that for a certain page, say a product detail page, you supply variations (different urls) and select a percentage of users that are included in the test. Such a user will be presented a variation of the product-detail page (and will continue to be presented the same variation over and over for continuation/ux reasons, based on cookies presumably) .

All fine and good.

However, say I have 100 products on my site. Just testing a variation on 1 of those products has imho the following disadvantages:

  • slow progressing tests because of lower nr of visitors.
  • the test isn't isolated. I.e: since other product detail pages aren't included in the test, displaying a variation-page for 1 product-detail page while all other product-detail pages show the original can (will) lead to a confusing experience (and thus skewed conversion statistics) for the user that browses multiple products, which most of them do.

To me it seems far better to be able to dynamically include all products of a certain type into the same test (e.g: all TV's) , for example by enabling to set some regular expression or other filter on urls to include in the test.

Is such a thing possible currently, scheduled, useful, or completely missing the point?

EDIT

Part of the solution seems to be "relative urls" https://support.google.com/analytics/bin/answer.py?hl=en&answer=2664470

Taking the previous example one step further, we can see how the use of relative URLs lets you easily run an experiment on a set of different original pages, and test visual alternatives across that group of pages (e.g., the product pages in an e-commerce site).

Remaining question: How to dynamically tag which pages belong to the experiment (e.g: based on regex)

Thanks.

like image 411
Geert-Jan Avatar asked Aug 07 '12 08:08

Geert-Jan


People also ask

What is experiments in Google Analytics?

Google Analytics comes with a basic content experiments feature that will allow you to compare different page variations, split traffic to them accordingly, and get email updated about how results are trending and whether you're going to hit your defined objective or not.

How Google ab testing works?

What Is A/B Testing? A/B testing is an effective way to find and make improvements on your business website that impact your online success. It works by creating a second version of your page with slight differences and splitting traffic between each version equally. You can then see which variant performs better.


1 Answers

The solution is to use relative url for the variation page.

E.g. you have a number of product pages:

www.mysite.com/products/eggs.html www.mysite.com/products/cheese.html www.mysite.com/products/bread.html etc. 

For each page you have a matching variation page:

www.mysite.com/products/eggs.html?var=bigpicture www.mysite.com/products/cheese.html?var=bigpicture www.mysite.com/products/bread.html?var=bigpicture etc. 

You want to use all the product pages in 1 experiment.

Go To google Analytics Content Experiments: For the orginal page choose ONE of the many product pages (e.g. www.mysite.com/products/eggs.html) (This is just to get the experiment code and provide GA with an example page)

For the variation page choose relative url and put ?var=bigpicture

Then place the javascript required for the experiment on ALL the original product pages you want in the experiment

Google Content experiments Dynamic URL product pages

For more information see: http://support.google.com/analytics/bin/answer.py?hl=en&answer=2664470&topic=1745208&ctx=topic

like image 169
wal5hy Avatar answered Oct 19 '22 10:10

wal5hy