Track ecommerce events on web
This plugin helps you track ecommerce activity. See the full details for all ecommerce schemas in the ecommerce tracking overview page.
It provides several trackX methods, which each create a Snowplow ecommerce action event with the appropriate entities attached. The event itself has only one property, an enum describing the ecommerce action taken e.g. add_to_cart.
There are also two entities that can be globally configured: ecommerce page and ecommerce user.
This plugin is supported by the Snowplow Ecommerce dbt model.
The plugin is available since version 3.8 of the tracker.
Snowplow ecommerce events and entities must be manually tracked.
Install plugin
- JavaScript (tag)
- Browser (npm)
| Tracker Distribution | Included |
|---|---|
sp.js | ✅ |
sp.lite.js | ❌ |
Download:
| Download from GitHub Releases (Recommended) | Github Releases (plugins.umd.zip) |
| Available on jsDelivr | jsDelivr (latest) |
| Available on unpkg | unpkg (latest) |
window.snowplow(
'addPlugin',
'https://cdn.jsdelivr.net/npm/@snowplow/browser-plugin-snowplow-ecommerce@latest/dist/index.umd.min.js',
['snowplowEcommerceAccelerator', 'SnowplowEcommercePlugin']
);
npm install @snowplow/browser-plugin-snowplow-ecommerceyarn add @snowplow/browser-plugin-snowplow-ecommercepnpm add @snowplow/browser-plugin-snowplow-ecommerce
import { newTracker } from '@snowplow/browser-tracker';
import { SnowplowEcommercePlugin } from '@snowplow/browser-plugin-snowplow-ecommerce';
newTracker('sp1', '{{collector_url}}', {
appId: 'my-app-id',
plugins: [ SnowplowEcommercePlugin() ],
});
Events
| API | Used for: |
|---|---|
trackProductView | Tracking a visit to a product page. Known also as product detail view. |
trackAddToCart | Track an addition to cart. |
trackRemoveFromCart | Track a removal from cart. |
trackProductListView | Track an impression of a product list. The list could be a search results page, recommended products, upsells etc. |
trackProductListClick | Track the click/selection of a product from a product list. |
trackPromotionView | Track an impression for an internal promotion banner or slider or any other type of content that showcases internal products/categories. |
trackPromotionClick | Track the click/selection of an internal promotion. |
trackCheckoutStep | Track a checkout step completion in the checkout process together with common step attributes for user choices throughout the checkout funnel. |
trackTransaction | Track a transaction/purchase completion. |
trackRefund | Track a transaction partial or complete refund. |
trackTransactionError | Track an error happening during a transaction process. |
Product view
To track a product view, use the trackProductView method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackProductView:{trackerName}", {
id: "12345",
name: "Baseball T",
brand: "Snowplow",
category: "apparel",
price: 200,
currency: "USD",
});
import { trackProductView } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackProductView({
id: "12345",
name: "Baseball T",
brand: "Snowplow",
category: "apparel",
price: 200,
currency: "USD",
});
Add to cart
To track products being added to the cart, use the trackAddToCart method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackAddToCart:{trackerName}", {
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
currency: "USD",
},
],
total_value: 200,
currency: "USD",
});
import { trackAddToCart } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackAddToCart({
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
currency: "USD",
},
],
total_value: 200,
currency: "USD",
});
- Where
productsis an array with the products added to cart. - Where
total_valueis the value of the cart after the addition. - Where
currencyis the currency of the cart.
Remove from cart
To track products being removed from the cart, use the trackRemoveFromCart method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackRemoveFromCart:{trackerName}", {
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
currency: "USD",
},
],
total_value: 0,
currency: "USD",
});
import { trackRemoveFromCart } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackRemoveFromCart({
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
currency: "USD",
},
],
total_value: 0,
currency: "USD",
});
- Where
productsis an array with the products removed from the cart. - Where
total_valueis the value of the cart after the removal of the products. - Where
currencyis the currency of the cart.
Product list view
To track a product list view, use the trackProductListView method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackProductListView:{trackerName}", {
products: [
{
id: "P123",
name: "Fashion red",
brand: "Snowplow",
category: "Mens/Apparel",
price: 100,
inventory_status: "in stock",
currency: "USD",
position: 1,
},
{
id: "P124",
name: "Fashion green",
brand: "Snowplow",
category: "Mens/Apparel",
price: 119,
inventory_status: "in stock",
currency: "USD",
position: 2,
},
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
position: 3,
},
],
name: "Recommended Products",
});
import { trackProductListView } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackProductListView({
products: [
{
id: "P123",
name: "Fashion red",
brand: "Snowplow",
category: "Mens/Apparel",
price: 100,
inventory_status: "in stock",
currency: "USD",
position: 1,
},
{
id: "P124",
name: "Fashion green",
brand: "Snowplow",
category: "Mens/Apparel",
price: 119,
inventory_status: "in stock",
currency: "USD",
position: 2,
},
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
position: 3,
},
],
name: "Recommended Products",
});
- Where
productsis an array of products being viewed from the list. - Where
nameis the name of the list being viewed. For the list names, you can use any kind of friendly name or a codified language to express the labeling of the list. E.g.Shoes - Men - Sneakers,Search results: "unisex shoes", orProduct page upsells.
Product list click
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackProductListClick:{trackerName}", {
product: {
id: "P124",
name: "Fashion green",
brand: "Snowplow",
category: "Mens/Apparel",
price: 119,
inventory_status: "in stock",
currency: "USD",
position: 2,
},
name: "Recommended Products",
});
import { trackProductListClick } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackProductListClick({
product: {
id: "P124",
name: "Fashion green",
brand: "Snowplow",
category: "Mens/Apparel",
price: 119,
inventory_status: "in stock",
currency: "USD",
position: 2,
},
name: "Recommended Products",
});
- Where
productis the product being clicked or selected from the list. - Where
nameis the name of the list the product is in. For the list names, you can use any kind of friendly name or a codified language to express the labeling of the list. E.g.Shoes - Men - Sneakers,Search results: "unisex shoes", orProduct page upsells.
Promotion view
- JavaScript (tag)
- Browser (npm)
/* Carousel slide 1 viewed */
window.snowplow("trackPromotionView:{trackerName}", {
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 1,
product_ids: ['P1234'],
});
/* On carousel slide 2 view */
window.snowplow("trackPromotionView:{trackerName}", {
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 2,
product_ids: ['P1235'],
});
import { trackPromotionView } from '@snowplow/browser-plugin-snowplow-ecommerce';
/* Carousel slide 1 viewed */
trackPromotionView({
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 1,
product_ids: ['P1234'],
});
/* On carousel slide 2 view */
trackPromotionView({
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 2,
product_ids: ['P1235'],
});
Promotion click
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackPromotionClick:{trackerName}", {
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 1,
product_ids: ['P1234'],
});
import { trackPromotionClick } from "@snowplow/browser-plugin-snowplow-ecommerce";
trackPromotionClick({
id: 'IP1234',
name: 'promo_winter',
type: 'carousel',
position: 1,
product_ids: ['P1234'],
});
Checkout step
To track a checkout step, use the trackCheckoutStep method with the following attributes:
- JavaScript (tag)
- Browser (npm)
/* Step 1 - Account type selection */
window.snowplow("trackCheckoutStep:{trackerName}", {
step: 1,
account_type: "guest checkout",
});
/* Step 2 - Billing options selection */
window.snowplow("trackCheckoutStep:{trackerName}", {
step: 2,
payment_method: "credit card",
proof_of_payment: "invoice",
});
import { trackCheckoutStep } from '@snowplow/browser-plugin-snowplow-ecommerce';
/* Step 1 - Account type selection */
trackCheckoutStep({
step: 1,
account_type: "guest checkout",
});
/* Step 2 - Billing options selection */
trackCheckoutStep({
step: 2,
payment_method: "credit card",
proof_of_payment: "invoice",
});
Transaction
To track a completed transaction, use the trackTransaction method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackTransaction:{trackerName}", {
transaction_id: "T12345",
revenue: 230,
currency: "USD",
payment_method: "credit_card",
total_quantity: 1,
tax: 20,
shipping: 10,
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
quantity: 1,
},
],
});
import { trackTransaction } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackTransaction({
transaction_id: "T12345",
revenue: 230,
currency: "USD",
payment_method: "credit_card",
total_quantity: 1,
tax: 20,
shipping: 10,
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
quantity: 1,
},
],
});
- Where
productsis an array with the products taking part in the transaction.
Refund
Available from version 3.10.
To track a complete or partial refund you can use the trackRefund method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackRefund:{trackerName}", {
transaction_id: "T12345",
currency: "USD",
refund_amount: 200,
refund_reason: "return",
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
quantity: 1,
},
],
});
import { trackRefund } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackRefund({
transaction_id: "T12345",
currency: "USD",
refund_amount: 200,
refund_reason: "return",
products: [
{
id: "P125",
name: "Baseball T",
brand: "Snowplow",
category: "Mens/Apparel",
price: 200,
inventory_status: "in stock",
currency: "USD",
quantity: 1,
},
],
});
- Where
productsis an array with the products taking part in the refund.
Transaction error
Available from version 3.13.
To track an error happening during a transaction process, use the trackTransactionError method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackTransactionError:{trackerName}", {
resolution: "rejection",
error_code: "E123",
error_shortcode: "CARD_DECLINE",
error_description: "Card has been declined by the issuing bank.",
error_type: "hard",
transaction: {
revenue: 45,
currency: "EUR",
transaction_id: "T12345",
payment_method: "card",
total_quantity: 1
}
});
import { trackTransactionError } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackTransactionError({
resolution: "rejection",
error_code: "E123",
error_shortcode: "CARD_DECLINE",
error_description: "Card has been declined by the issuing bank.",
error_type: "hard",
transaction: {
revenue: 45,
currency: "EUR",
transaction_id: "T12345",
payment_method: "card",
total_quantity: 1
}
});
- Where
transactionis the transaction entity being processed.
Page and user entities
Once set, the ecommerce page or user entity will be attached to all subsequent Snowplow events.
There's no way to unset these entities.
- JavaScript (tag)
- Browser (npm)
window.snowplow("setPageType:{trackerName}", { type, language, locale });
window.snowplow("setEcommerceUser:{trackerName}", { id, is_guest, email });
import { setPageType } from '@snowplow/browser-plugin-snowplow-ecommerce';
setPageType({ type, language, locale });
setEcommerceUser({ id, is_guest, email });
GA4/UA Ecommerce transitional API
Available from version 3.10.
If you already use Google Analytics 4 ecommerce or Universal Analytics Enhanced Ecommerce to collect information about the shopping behavior of your users, we've prepared a way to quickly implement Snowplow Ecommerce without making many changes on your current setup.
This transitional API depends on the standardized dataLayer structure for both Google Analytics ecommerce implementations. This would make it easier for the transition to happen either through Google Tag Manager, which has more control over the dataLayer, or custom code that uses the standard ecommerce structures.
Universal Analytics Enhanced Ecommerce
The standard Universal Analytics Enhanced Ecommerce implementation is based on the official guide reference.
Important: The dataLayer.currencyCode attribute must be available for all product interactions. Otherwise, almost all methods accept an Options object which can include the currency code as follows:
method({{dataLayer.ecommerce reference}} , { currency: "currency code" });
trackEnhancedEcommerceProductListView
To track an Enhanced Ecommerce product list view, you can use the trackEnhancedEcommerceProductListView method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommerceProductListView:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackEnhancedEcommerceProductListView } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommerceProductListView({{dataLayer.ecommerce reference}});
trackEnhancedEcommerceProductListClick
To track an Enhanced Ecommerce product list click, you can use the trackEnhancedEcommerceProductListClick method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommerceProductListClick:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackEnhancedEcommerceProductListClick } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommerceProductListClick({{dataLayer.ecommerce reference}});
trackEnhancedEcommerceProductDetail
To track an Enhanced Ecommerce product detail view, you can use the trackEnhancedEcommerceProductDetail method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommerceProductDetail:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackEnhancedEcommerceProductDetail } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommerceProductDetail({{dataLayer.ecommerce reference}});
trackEnhancedEcommercePromoView
To track an Enhanced Ecommerce internal promotion view, you can use the trackEnhancedEcommercePromoView method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommercePromoView:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackEnhancedEcommercePromoView } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommercePromoView({{dataLayer.ecommerce reference}});
trackEnhancedEcommercePromoClick
To track an Enhanced Ecommerce internal promotion click, you can use the trackEnhancedEcommercePromoClick method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommercePromoClick:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackEnhancedEcommercePromoClick } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommercePromoClick({{dataLayer.ecommerce reference}});
trackEnhancedEcommerceAddToCart
To track an Enhanced Ecommerce add to cart event, you can use the trackEnhancedEcommerceAddToCart method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommerceAddToCart:{trackerName}", {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
import { trackEnhancedEcommerceAddToCart } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommerceAddToCart( {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
- Where
finalCartValueis the value of the cart after the addition.
trackEnhancedEcommerceRemoveFromCart
To track an Enhanced Ecommerce remove from cart event, you can use the trackEnhancedEcommerceRemoveFromCart method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommerceRemoveFromCart:{trackerName}", {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
import { trackEnhancedEcommerceRemoveFromCart } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommerceRemoveFromCart( {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
- Where
finalCartValueis the value of the cart after the removal.
trackEnhancedEcommerceCheckoutStep
To track an Enhanced Ecommerce remove from cart event, you can use the trackEnhancedEcommerceCheckoutStep method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommerceCheckoutStep:{trackerName}", {{dataLayer.ecommerce reference}}, {
checkoutOption: { delivery_method: "express_delivery" },
});
import { trackEnhancedEcommerceCheckoutStep } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommerceCheckoutStep( {{dataLayer.ecommerce reference}}, {
checkoutOption: { delivery_method: "express_delivery" },
});
- Where
checkoutOptionis a key value pair object of available Snowplow checkout options, exceptstepwhich is retrieved from the dataLayer directly.
trackEnhancedEcommercePurchase
To track an Enhanced Ecommerce remove from cart event, you can use the trackEnhancedEcommercePurchase method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackEnhancedEcommercePurchase:{trackerName}", {{dataLayer.ecommerce reference}}, {
paymentMethod: "bank_transfer",
});
import { trackEnhancedEcommercePurchase } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackEnhancedEcommercePurchase( {{dataLayer.ecommerce reference}}, {
paymentMethod: "bank_transfer",
});
- Where
paymentMethodis the payment method selected in this transaction. This attributes corresponds to thepayment_methodof the transaction schema. Defaults tounknown.
Google Analytics 4 Ecommerce
The Google Analytics 4 ecommerce implementation is based on the official guide reference.
Important: The dataLayer.ecommerce.currency attribute must be available for all product interactions. Otherwise, almost all methods accept an Options object which can include the currency code as follows:
method( {{dataLayer.ecommerce reference}} , { currency: "currency code" });
trackGA4ViewItemList
To track an GA4 Ecommerce item list view, you can use the trackGA4ViewItemList method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4ViewItemList:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackGA4ViewItemList } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4ViewItemList({{dataLayer.ecommerce reference}});
trackGA4SelectItem
To track an GA4 Ecommerce item selection from a list, you can use the trackGA4SelectItem method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4SelectItem:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackGA4SelectItem } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4SelectItem({{dataLayer.ecommerce reference}});
trackGA4ViewItem
To track an GA4 Ecommerce item view, you can use the trackGA4ViewItem method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4ViewItem:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackGA4ViewItem } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4ViewItem({{dataLayer.ecommerce reference}});
trackGA4ViewPromotion
To track an GA4 Ecommerce internal promotion view, you can use the trackGA4ViewPromotion method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4ViewPromotion:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackGA4ViewPromotion } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4ViewPromotion({{dataLayer.ecommerce reference}});
trackGA4SelectPromotion
To track an GA4 Ecommerce internal promotion selection, you can use the trackGA4SelectPromotion method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4SelectPromotion:{trackerName}", {{dataLayer.ecommerce reference}});
import { trackGA4SelectPromotion } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4SelectPromotion( {{dataLayer.ecommerce reference}});
trackGA4AddToCart
To track an GA4 Ecommerce add to cart event, you can use the trackGA4AddToCart method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4AddToCart:{trackerName}", {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
import { trackGA4AddToCart } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4AddToCart( {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
- Where
finalCartValueis the value of the cart after the addition.
trackGA4RemoveFromCart
To track an GA4 Ecommerce remove from cart event, you can use the trackGA4RemoveFromCart method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4RemoveFromCart:{trackerName}", {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
import { trackGA4RemoveFromCart } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4RemoveFromCart( {{dataLayer.ecommerce reference}}, {
finalCartValue: 20,
});
- Where
finalCartValueis the value of the cart after the removal.
trackGA4BeginCheckout
To track an GA4 Ecommerce checkout beginning, you can use the trackGA4BeginCheckout method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4BeginCheckout:{trackerName}", {
step: 1,
});
import { trackGA4BeginCheckout } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4BeginCheckout({
step: 1,
});
- Where
stepis a number representing the step of the checkout funnel. Defaults to 1, mimicking thebegin_checkoutGA4 event.
trackGA4AddShippingInfo
To track an GA4 Ecommerce checkout shipping info step completion, you can use the trackGA4AddShippingInfo method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4AddShippingInfo:{trackerName}", {
step: 1,
});
import { trackGA4AddShippingInfo } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4AddShippingInfo({
step: 1,
});
- Where
stepis a number representing the step of the checkout funnel.
trackGA4AddPaymentOptions
To track an GA4 Ecommerce checkout payment option step completion, you can use the trackGA4AddPaymentOptions method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4AddPaymentOptions:{trackerName}", {
step: 1,
});
import { trackGA4AddPaymentOptions } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4AddPaymentOptions({
step: 1,
});
- Where
stepis a number representing the step of the checkout funnel.
trackGA4Transaction
To track an GA4 Ecommerce checkout payment option step completion, you can use the trackGA4Transaction method with the following attributes:
- JavaScript (tag)
- Browser (npm)
window.snowplow("trackGA4Transaction:{trackerName}", {
paymentMethod: "bank_transfer",
});
import { trackGA4Transaction } from '@snowplow/browser-plugin-snowplow-ecommerce';
trackGA4Transaction({
paymentMethod: "bank_transfer",
});
- Where
paymentMethodis the payment method selected in this transaction. This attributes corresponds to thepayment_methodof the transaction schema. Defaults tounknown.