Skip to content

Instantly share code, notes, and snippets.

@chexton
Created November 26, 2012 05:40
Show Gist options
  • Select an option

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

Select an option

Save chexton/4146744 to your computer and use it in GitHub Desktop.
Vero Pro Training Add To Cart
<?php
if ( isset( $_POST['products'] ) )
{
foreach ( $_POST['products'] as $product )
{
?>
<script>
_veroq.push(['track', 'added_product_to_cart', {id: '<?php echo $product['product'] ?>', price: '<?php echo $product['price'] ?>', category: '<?php echo $product['category'] ?>'}]);
</script>
<?php
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment