Testing different price points for a product

THIS ARTICLE WILL HELP YOU:

Summary

Convert Experiences allows you to test different product price levels in e-commerce platforms.

General Method Description

The way that this is done is as follows:

  1. Clone the product in your e-commerce catalog, for which you want to AB test its price. Modify its price or alternatively, anything you want to test against. In the process of cloning the product, configure it so the new one does not show in your product list and remains hidden for search. This method is recommended, as Convert cannot modify the prices on your e-commerce platform throughout the checkout process. 
  2. Create a Convert Split URL experiment with the original product URL and the cloned product URL.
  3. Add revenue goals or any others that are appropriate.
  4. Start the experiment.
  5. At the end, you will see which product gathered more conversions.

The checkout will be the same for the alternative product as the same product.

Testing sets of products

To do this you will need to do a similar type of setup, but when creating the AB test, you will need to add the different original product URLs to the experiment, and its corresponding cloned products URLs.

This can be done in two ways:

  1. Create a Convert Split URL experiment, and configure with a regex expression to transform the original products URLs to the new ones.
    This has to be created as one regex expression in the Site Area and Variation Menu to include all URLs. 
    You will need to be familiar with regular expressions to be able to use this option.
  2. Create a normal Convert AB experiment, and code the redirection on the Variation Custom JS as described in the following article.
    You will need to be familiar with JavaScript to be able to configure something like this. 
    The JS Code that you would need to insert in the Custom JS area would look something like this:

     

    if (document.location.href == 'http://www.domain.com/products/product1.html') {
    convert.redirect('http://www.domain.com/products/product1_v2.html');
    }
    else if (document.location.href == 'http://www.domain.com/products/product2.html')
    convert.redirect('http://www.domain.com/products/product2_v2.html');
    }
    else if (document.location.href == 'http://www.domain.com/products/product3.html')
    convert.redirect('http://www.domain.com/products/product3_v2.html');
    }

     

    The convert.redirect() function will issue a redirect to the new variation and will enable the Convert platform to do tracking on the resulting page. 
    Convert will redirect half of the users that reach the product pages to alternate products, and will do it every time they try to visit the product pages, by remembering what group of products they visited the first time they went through the experiment.

If a customer searches for a product you don't need to worry, as if they have already been included on a variation, Convert will send them to the corresponding variation product.

Hide duplicate product from searches and listings

Additionally you will need to hide the duplicate product from searches and collection listings. Shopify App Store provides several Apps that provide such functionality, although we do not recommend any one in particular.