Created
December 17, 2019 12:20
-
-
Save justinshreve/6e945dcb4714134156aba1b3c7f086cf to your computer and use it in GitHub Desktop.
enable-new-wc-onboarding.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Enable WooCommerce Onboarding Split Test | |
Description: Puts the site into the test group for WooCommerce Onboarding split testing. | |
Version: 1.0.0 | |
Author: Automattic | |
License: GPL2 | |
*/ | |
function woocommerce_admin_set_test_group() { | |
return 'b'; | |
} | |
add_filter( 'pre_option_woocommerce_setup_ab_wc_admin_onboarding', 'woocommerce_admin_set_test_group' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment