We have: GET landing.html (then select a production) POST cart1.php (then select options) POST cart2.php (then enter billing info) POST cart3.php (will process payment and then redirect GET thankyou.html
I want to run an experiment on cart2.php to increase conversions.
How do I do this in Google Analytics?
UPDATE:
If I do the basic tracking, I lose the transaction details. For example, here is:
- A simple form (that leads into a shopping cart)
- An original shopping cart page 1
- An experimental shopping cart page 1



====================
This is an example of the cart that will not work with Analytics:
=== 1.php ===
<form action="2.php" method="get">
<input name="name">
<button>GO</button>
</form>
=== 2.php ===
<html>
<head>
<!-- Google Analytics Content Experiment code SNIP -->
<!-- Google Analytics Tracking code SNIP -->
</head>
<body>
<p>2</p>
</body>
</html>
=== 2b.php ===
<html>
<head>
<!-- Google Analytics Tracking code SNIP -->
</head>
<body>
<p>2b</p>
</body>
</html>


