| 1 |
<?php defined('ABSPATH') or exit; ?> |
| 2 |
$(document.body).off('click', '.remove').on('click', '.remove', function() { |
| 3 |
window.VWO = window.VWO || []; |
| 4 |
VWO.event = VWO.event || function() { |
| 5 |
VWO.push(["event"].concat([].slice.call(arguments))); |
| 6 |
}; |
| 7 |
|
| 8 |
VWO.event('woocommerce.productRemovedFromCart', { |
| 9 |
productSku: $(this).data('product_sku') ? ('' + $(this).data('product_sku')) : ('#' + $(this).data('product_id')), |
| 10 |
productTitle: $(this).closest('tr').find('.product-name').text().trim() || '', |
| 11 |
quantity: $(this).closest('tr').find('.qty').val() ? parseInt($(this).closest('tr').find('.qty').val()): 1 |
| 12 |
}); |
| 13 |
}); |
| 14 |
|