Pro Plan15 minutesintermediate

E-commerce Revenue Integration

Integrate e-commerce platforms with Zenovay - track product sales, categories, cart behavior, and purchase analytics.

ecommercerevenueproductssales
Last updated: January 15, 2025
Pro Plan

Track e-commerce performance in Zenovay - product analytics, cart behavior, and complete purchase journey tracking.

E-commerce Features

What You Can Track

FeatureDescription
Product ViewsWhich products are viewed
Add to CartCart additions
Checkout StepsFunnel progression
PurchasesCompleted transactions
RevenueTotal and by product

Standard E-commerce Events

Product View

Track when products are viewed:

zenovay('track', 'view_product', {
  product_id: 'SKU-001',
  product_name: 'Blue Widget',
  category: 'Widgets',
  price: 49.99,
  currency: 'USD'
});

Add to Cart

Track cart additions:

zenovay('track', 'add_to_cart', {
  product_id: 'SKU-001',
  product_name: 'Blue Widget',
  category: 'Widgets',
  price: 49.99,
  quantity: 2,
  cart_value: 99.98
});

Remove from Cart

Track removals:

zenovay('track', 'remove_from_cart', {
  product_id: 'SKU-001',
  quantity: 1
});

Begin Checkout

Track checkout start:

zenovay('track', 'begin_checkout', {
  cart_value: 149.97,
  items: [
    { product_id: 'SKU-001', quantity: 2, price: 49.99 },
    { product_id: 'SKU-002', quantity: 1, price: 49.99 }
  ]
});

Purchase

Track completed purchase:

zenovay('track', 'purchase', {
  order_id: 'ORD-12345',
  value: 159.96,
  currency: 'USD',
  shipping: 9.99,
  tax: 12.50,
  coupon: 'SAVE10',
  items: [
    {
      product_id: 'SKU-001',
      product_name: 'Blue Widget',
      category: 'Widgets',
      price: 49.99,
      quantity: 2
    },
    {
      product_id: 'SKU-002',
      product_name: 'Red Widget',
      category: 'Widgets',
      price: 49.99,
      quantity: 1
    }
  ]
});

Platform Integrations

Shopify

  1. Go to your domain settings → Integrations tab
  2. Click "Connect Shopify"
  3. Enter store URL
  4. Authorize access
  5. Events track automatically

Or manual installation:

  • Add script to theme
  • Track events in checkout

WooCommerce

Install the Zenovay WooCommerce plugin:

  1. Download plugin from Settings
  2. Upload to WordPress
  3. Activate and configure
  4. Events track automatically

Magento

For Magento stores:

  1. Install Zenovay extension
  2. Configure in Admin
  3. Events tracked automatically

Custom Platform

Use the JavaScript API directly:

  • Implement tracking events
  • Call from cart/checkout
  • Test thoroughly

E-commerce Reports

Product Performance

ProductViewsAdd to CartPurchasesRevenue
Blue Widget1,20024085$4,249
Red Widget98018562$3,099
Green Widget75012045$2,249

Category Performance

CategoryRevenueOrdersAOV
Widgets$18,400245$75
Accessories$8,200180$46
Bundles$12,60085$148

Cart Metrics

MetricValue
Cart Addition Rate18%
Cart Abandonment Rate68%
Avg Cart Value$124
Avg Items in Cart2.3

Shopping Funnel

Default Funnel

Product View    10,000 (100%)
      ↓
Add to Cart      1,800 (18%)
      ↓
Begin Checkout     580 (5.8%)
      ↓
Purchase           245 (2.45%)

Funnel Analysis

StepVisitorsDrop-off
View → Cart18% continue82% drop
Cart → Checkout32% continue68% drop
Checkout → Purchase42% continue58% drop

Identify Issues

High drop-off points:

  • View → Cart: Product pages need work
  • Cart → Checkout: Cart abandonment
  • Checkout → Purchase: Checkout friction

Cart Abandonment

Track Abandonment

Automatic tracking when:

  • Items in cart
  • Session ends without purchase
  • Checkout started but not completed

Abandonment Report

Reason%
Just browsing35%
Unexpected costs28%
Complicated checkout18%
Required account12%
Slow delivery7%

Recovery Integration

Enterprise Plan

Connect abandonment data:

  • Email marketing integration
  • Retargeting audiences
  • Push notification triggers

Product Analytics

Top Products

RankProductRevenueUnits
1Blue Widget Pro$8,400168
2Starter Bundle$6,20062
3Red Widget$4,10082

Product Attribution

Which sources drive product sales:

ProductOrganicPaidEmail
Blue Widget45%35%20%
Bundle25%55%20%
Red Widget60%20%20%

Cross-Sell Analysis

Enterprise Plan

Frequently bought together:

  • Blue Widget + Accessory (35%)
  • Bundle + Warranty (28%)
  • Widget + Widget (22%)

Revenue Attribution

By Traffic Source

SourceRevenue%ROAS
Organic$18,20042%-
Google Ads$12,40028%4.2x
Facebook$5,80013%2.9x
Email$4,60011%23x
Affiliate$2,6006%5.2x

By Campaign

CampaignRevenueSpendROAS
Summer Sale$8,400$1,2007x
Product Launch$4,200$8005.25x
Retargeting$6,100$60010.2x

Advanced Features

Coupon Tracking

Track coupon performance:

CouponUsesRevenueDiscount
SAVE10245$18,400$2,044
FIRST2085$5,200$1,300
VIP1562$8,400$1,485

Shipping Analysis

MethodOrdersRevenueAvg Shipping
Standard320$28,400$4.99
Express85$12,600$12.99
Free145$18,200$0

Payment Method

MethodOrders%
Credit Card38065%
PayPal14525%
Apple Pay458%
Other122%

Custom Events

Wishlist

zenovay('track', 'add_to_wishlist', {
  product_id: 'SKU-001',
  product_name: 'Blue Widget'
});

Product Review

zenovay('track', 'product_review', {
  product_id: 'SKU-001',
  rating: 5
});
zenovay('track', 'product_search', {
  query: 'blue widget',
  results_count: 12
});

Best Practices

Track the Full Journey

  1. Product impressions
  2. Product views
  3. Add to cart
  4. View cart
  5. Begin checkout
  6. Add payment info
  7. Purchase

Use Product IDs

Consistent IDs enable:

  • Product-level analysis
  • Inventory connection
  • Cross-platform tracking

Test Thoroughly

Before launch:

  • Test each event
  • Verify data accuracy
  • Check attribution

Next Steps

Was this article helpful?