Created
November 27, 2012 03:44
-
-
Save chexton/4152227 to your computer and use it in GitHub Desktop.
Another Vero gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if(shopp('cart','hasitems')): ?> | |
| <?php while(shopp('cart','items')): ?> | |
| <script> | |
| _veroq.push(['track', 'added_product_to_cart', {name: '<?php shopp('cartitem','name'); ?>', price: '<?php shopp('cartitem','unitprice'); ?>', url: '<?php shopp('cartitem','url'); ?>'}]); | |
| </script> | |
| <?php endwhile; ?> | |
| <?php else: ?> | |
| <p>There are no items in the cart.</p> | |
| <?php endif; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment