私は、カートにアイテムを追加したユーザーを追跡する必要があるクライアントの 1 つで働いていますが、それを購入しませんでした..
このサイトは BigCommerce を使用しているため、次のページに移動することなく、ページ上で動的にカートに追加されます。
AddtoCart のコードは次のとおりです。
<div class="form-action">
<input id="form-action-addToCart" data-wait-message="Adding to cart…" class="button button--primary" type="submit" value="Add to Cart">
</div>
Facebookピクセルの場合:
<!-- Add Pixel Events to the button's click handler -->
<script type="text/javascript">
$('#form-action-addToCart').click(function() {
fbq('track', 'AddToCart', {
content_name: 'Really Fast Running Shoes',
content_category: 'Apparel & Accessories > Shoes',
content_ids: ['1234'],
content_type: 'product',
value: 4.99,
currency: 'USD'
});
});
</script>
また、 $('input#form-action-addToCart') を使用してみましたが、ピクセルが起動しませんでした..私はFacebookの公式ピクセルChrome拡張機能を使用しています...