Conversions not counted correctly
-
We’ve set up a CSS test for testing two versions of the cart and checkout page. Goal is the purchase of a product. The test scope is set for only these two pages. It works just fine. However, we get conversion rates of around 20 to 25 %. This can’t be true. Some months ago we tested a plugin for abandoned carts. We could easily see that more than 95% of users that put something in the cart did eventually purchase something. A conversion rate of 25 % seems way too low. This is not a major problem per se, but it increases the time until we can stop the test. Additionally, it increases the number of page views needed.
Theoretically, users may visit the cart or checkout page without having something in the cart. Bots might increase the page views, too. Would a PHP test be a better solution? I could check the cart like so and echo out the CSS:
if ( WC()->cart->is_empty() ) { echo ""; }Would you consider this a proper solution?
The topic ‘Conversions not counted correctly’ is closed to new replies.