Giter Club home page Giter Club logo

wordpress-plugin's Introduction

=== Optimizely Classic ===
Contributors: arthuracs, jonslaught, bradtaylorsf, lswartsenburg
Donate link: N/A
Tags: optimizely, ab testing, split testing, website optimization
Requires at least: 3.0
Tested up to: 4.4
Stable tag: 3.7.8
License: BSD 3-Clause
License URI: https://opensource.org/licenses/BSD-3-Clause

This plugin helps you configure your WordPress website to use Optimizely Classic, a dramatically easier way to improve your website through A/B testing.

== Description ==
This plugin helps you configure your WordPress website to use Optimizely Classic. If you are new to Optimizely or have started using Optimizely X (not Classic), then please use the [Optimizely X plugin](https://wordpress.org/plugins/optimizely-x/). 

Optimizely is a dramatically easier way for you to improve your website through A/B testing. Create an experiment in minutes with our easy-to-use visual interface with absolutely no coding or engineering required. Convert your website visitors into customers and earn more revenue today!

If you have an Optimizely Classic project, you simply enter your Optimizely project code in the plugin's configuration page and you're ready to start improving your website using Optimizely. Built for testing headlines, this plugin allows you to, create new experiments, see your experiment results, launch winners and much more all without leaving WordPress.

== Installation ==
Sign up at [Optimizely.com](http://www.optimizely.com).

1. Make sure you are using Optimizely Classic, not Optimizely X. If you are using Optimizely X, please use the Optimizely X plugin.
2. Upload the Optimizely Classic WordPress plugin to your blog
3. Activate the plugin through the Optimizely Classic menu in WordPress
4. Enter your [Optimizely API token](https://app.optimizely.com/tokens) in the plugin's settings page, choose a project to use, then save.

You're ready to start using Optimizely!

== Screenshots ==
1. Create multiple headlines for each post
2. View your results and launch winners directly from the dashboard

== Changelog ==

= 3.7.8 =
* FIXED readme issues

= 3.7.7 =
* FIXED duplicate readme.txt file

= 3.7.6 =
* UPDATED instructions to use the Optimizely X plugin for Optimizely projects that are using Optimizely X (not Classic)

= 3.7.5 =
* FIXED bug on edit post page that displayed unwanted tooltip
* UPDATED default conditional activation code to exclude users coming from other sites

= 3.7.1 =
* FIXED bug on config.js around the conditional activation input

= 3.7.0 =
* NEW - Conditional activation mode. Now you can only run an experiment if the user actually see's the headline
* NEW - Default URL targeting. Now you can have a default URL to run experiments on or across the entire site.
* Updated the links to go to app.optimizely.com

= 3.6.1 =
* fixed bug in edit.php that only happened on servers running lower than PHP 5.4

= 3.6.0 =
* prevented the creation of an experiment until the post is published. This is to prevent goals and URL targeting to be incorrect when a post title changes and URL truncating
* updated the results page to use the new Optimizely statistics engine

= 3.5.2 =
* Fixed issue where the powered testing number will only accept 2 digits
* Fixed issue where pagenow can be undefined. Check to see if its undefined before displaying the page

= 3.5.1 =
* Fixed bug in optimizely.php that was preventing large snippet ids to render correctly

= 3.5.0 =
* Major changes to get the plugin ready for WordPress VIP
* Fixed bug that caused some snippets not to get loaded correctly after performing an upgrade

= 3.2.1 =
* Fixed bug that caused some variations to not get updated or created after experiment creation

= 3.2.0 =
* Fixed bug where the progress bar was still loading when no results are ready


= 3.1.0 =
* Added ability to add custom post types

= 3.0.0 =
* Making repository Open Source
* Added Results Page
* Added Ability to launch winners directly from results page by changing the headline for the post
* Added powered testing
* Added ability to add configure how many variations to test per post

= 2.0.0 =
* Added headline testing

= 1.0.1 =
* Prioritizing the Optimizely code snippet so that it appears above other scripts.

= 1.0.0 =
* Introducing the Optimizely WordPress plugin. Now it's even easier to start improving your website.

== Upgrade Notice ==
There are no upgrade notices

wordpress-plugin's People

Contributors

andrej1c avatar bcampeau avatar bhamodi avatar bradtaylorsf avatar davidcraig avatar mmoravec avatar nchilada avatar spencermorin avatar thatsjonsense avatar whelanboyd avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wordpress-plugin's Issues

Add Revenue Tracking

This plugin could automatically add revenue tracking for some of the largest WordPress e-commerce plugins like WooCommerce & Easy Digital Downloads.

It's a small amount of code and could make revenue tracking so much easier. Here's a snippet how one website set's it up.

function eddwp_optimizely_revenue_tracking() {
    if( ! function_exists( 'edd_get_purchase_session' ) ) {
        return;
    }
    if( function_exists( 'edd_is_success_page' ) && ! edd_is_success_page() ) {
        return;
    }
    $session = edd_get_purchase_session();
    if( ! $session ) {
        return;
    }
    $payment_id = edd_get_purchase_id_by_key( $session['purchase_key'] );
?>
<script>
    var price = <?php echo edd_get_payment_amount( $payment_id ); ?>;
    window.optimizely = window.optimizely || [];
    window.optimizely.push(['trackEvent', 'purchase_complete', {'revenue': price * 100}]);
</script>
<?php
}
add_action( 'wp_head', 'eddwp_optimizely_revenue_tracking', 11 );

From: https://github.com/easydigitaldownloads/edd-custom-functions/blob/master/custom-functions.php#L150-L173

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.