Giter VIP home page Giter VIP logo

abtest2's Introduction

abtest2 TYPO3 Extension

Extension for A/B-Tests

This extension supports TYPO3 administrators in performing A/B tests. This is useful when a site owner want to measure whether a new version improves or reduces user interaction compared to the current version.

Features of the extension

  1. Caching of each page version
  2. A real 50/50% chance. That means: No selection by random, because of the unreliable random method. So the versions are always taken alternately.
  3. Complete different content with same page id. So only one URL for two versions. The displayed version is determined by the cookie value.

More information

Page properties get a new field "B Page" where you can provide the alternative page version. If the page is requested by the user, the extension checks wheter there is a B version specified. If this is the case, the version is selected by "random". A cookie is set that remembers which version the user got (so there is no flip-flop if the user requests the page repeatedly). Once the cookie expires, the user is back to random at the next request.

Additional header information may be specified both for the original version as well as for the B version. This allows to track version differences in a web analysis tool such as Analytics.

Demo

Demo

Example for Google Tag Manager:

You have two options to define the parameter: By page settings or by TypoScript:

Additional Header Information at page settings

On original page (version A):

<script>
dataLayer.push({'variant': 'a'});
</script>

On version B:

<script>
dataLayer.push({'variant': 'b'});
</script>
TypoScript
[globalVar = GP:abtest = a]
  page.headerData.129 = TEXT
  page.headerData.129.value (
<script>
  dataLayer = [{
    'variant': 'a'
  }];
</script>
  )
[global]
[globalVar = GP:abtest = b]
  page.headerData.129 = TEXT
  page.headerData.129.value (
<script>
  dataLayer = [{
    'variant': 'b'
  }];
</script>
  )
[global]

page.headerData.130 = TEXT
page.headerData.130.value (
<!-- Google Tag Manager -->
....
<!-- End Google Tag Manager -->
)

abtest2's People

Contributors

carlosagrelis avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.