| 1 |
<?php defined( 'ABSPATH' ) or exit; ?> |
| 2 |
$( '.add_to_cart_button:not(.product_type_variable, .product_type_grouped)' ).on( 'click', function() { |
| 3 |
window.VWO = window.VWO || []; |
| 4 |
VWO.event = VWO.event || function () {VWO.push(["event"].concat([].slice.call(arguments)))}; |
| 5 |
VWO.event( 'woocommerce.productAddedToCart', { |
| 6 |
productId:$(this).data( 'product_id' ), |
| 7 |
productSku: ( $(this).data('product_sku') ) ? ( '' + $(this).data('product_sku') ) : ( '#' + $(this).data( 'product_id' ) ), |
| 8 |
quantity: $(this).data( 'quantity' ) |
| 9 |
}); |
| 10 |
}); |