Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support multiple A/B tests at once #1

Open
grimmdude opened this issue Aug 29, 2023 · 0 comments
Open

Support multiple A/B tests at once #1

grimmdude opened this issue Aug 29, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@grimmdude
Copy link
Member

One limitation of this library is that only a single A/B test can be run at once. This is because whenever a page view is counted it cycles through all available tests defined in config/ab-testing.php.

I think we can support multiple tests by making some changes so that we can pass an array of variants as a second argument into the Abtest::isExperiment() method. For instance, something like this:

if (Abtest::isExperiment('booking-page-a', ['booking-page-a', 'booking-page-b'] )) {
    $test = 'a';
}
@grimmdude grimmdude added the enhancement New feature or request label Aug 29, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant