-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Plans: A/B test displaying features list vs. description in Plan v2 #3316
Conversation
Added the "And more" link to the plan comparison and updated the a/b test start date. cc: @drewblaisdell for testing and review. |
👍 Product review - works as expected |
@@ -40,8 +40,14 @@ module.exports = React.createClass( { | |||
} | |||
}, | |||
|
|||
getComparePlansUrl: function() { | |||
const { site } = this.props; | |||
var siteSuffix = site ? site.slug : ''; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Super minor, but we're trying to avoid ES6 syntax (like const or object destructuring) in files that haven't been fully rewritten in ES6 (there is another erroneous instance of this on line 51). This should be:
var site = this.props.site,
siteSuffix = site ? site.slug : '';
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
👍 |
67507fd
to
b9d4711
Compare
Plans: A/B test displaying features list vs. description in Plan v2
This is a second iteration on #2924 with a more focused hypothesis. Testing by adding a third variation to remove a few features from the list.
Hypothesis
eCommerce and Google Analytics are key drivers toward Business plan signups.
Variations
description
list
andMore
Testing
With description text
localStorage.setItem( 'ABTests', '{"plansFeatureList_20160215":"description"}' );
in your browser.With full features list
localStorage.setItem( 'ABTests', '{"plansFeatureList_20160215":"list"}' );
in your browser.With truncated features list
localStorage.setItem( 'ABTests', '{"plansFeatureList_20160215":"andMore"}' );
in your browser.