A/B Split Testing and Multivariate Testing
Posted: Mon Oct 20, 2008 7:58 pm
What are people using for A/B Testing and/or Multivariate testing? Is there any PHP solution that plays well with CMS Made Simple?
Content management as it is meant to be
https://forum.cmsmadesimple.org/
Code: Select all
{assign var=decision value="0"|mt_rand:1}
{content block="testcontent_a" assign="content_block_a"}
{content block="testcontent_b" assign="content_block_b"}
{if $decision==1}
...stuff...
{$content_block_a}
...stuff...
{else}
...stuff...
{$content_block_b}
...stuff...
{/if}
Code: Select all
{assign var=decision value="1"|mt_rand:10}
{if $decision<=8}
80% possibility of showing this version
{else}
20% possibility of showing the other version
{/if}
Code: Select all
id | itemname | Counter
---------------------------------------------------
0 Test A Served 50
1 Test B Served 60
2 A Success 15
3 B Success 10
Code: Select all
{assign var=version_id value=$smarty.get.version}
{if $version_id == 'A'}
{count_success which="A"}
{/if}
{if $version_id == 'B'}
{count_success which="B"}
{/if}
Code: Select all
{count_serve which="A"}