Skip to content

Instantly share code, notes, and snippets.

@chexton
Created November 27, 2012 03:44
Show Gist options
  • Select an option

  • Save chexton/4152227 to your computer and use it in GitHub Desktop.

Select an option

Save chexton/4152227 to your computer and use it in GitHub Desktop.
Another Vero gist
<?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