Conversion funnel analysis on website

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Conversion Funnel Analysis on Website

Funnel analysis identifies at what stage users leave without completing goal. For e-commerce: view → cart → checkout → payment. For SaaS: signup → onboarding → activation → payment.

GA4 Funnel Setup

// Event markup for each funnel step

// Step 1: Product page view
gtag('event', 'view_item', {
  items: [{ item_id: product.id, item_name: product.name, price: product.price }]
});

// Step 2: Add to cart
gtag('event', 'add_to_cart', {
  currency: 'RUB',
  value: product.price,
  items: [{ item_id: product.id, quantity: 1 }]
});

// Step 3: Checkout start
gtag('event', 'begin_checkout', {
  currency: 'RUB',
  value: cartTotal,
  items: cartItems
});

// Step 4: Payment info
gtag('event', 'add_payment_info', {
  payment_type: 'card',
  value: cartTotal
});

// Step 5: Purchase
gtag('event', 'purchase', {
  transaction_id: order.id,
  value: order.total,
  currency: 'RUB'
});

Create funnel in GA4: Explore → New exploration → Funnel exploration. Add steps, include breakdown by device/segment.

Analysis via BigQuery

-- Conversion at each funnel step
WITH funnel AS (
  SELECT
    user_pseudo_id,
    MAX(CASE WHEN event_name = 'view_item' THEN 1 ELSE 0 END) AS viewed,
    MAX(CASE WHEN event_name = 'add_to_cart' THEN 1 ELSE 0 END) AS added,
    MAX(CASE WHEN event_name = 'begin_checkout' THEN 1 ELSE 0 END) AS checkout,
    MAX(CASE WHEN event_name = 'purchase' THEN 1 ELSE 0 END) AS purchased
  FROM `project.analytics.events_*`
  WHERE _TABLE_SUFFIX BETWEEN '20240301' AND '20240331'
  GROUP BY user_pseudo_id
)
SELECT
  COUNT(*) AS total_users,
  SUM(viewed) AS viewed,
  SUM(added) AS added_to_cart,
  SUM(checkout) AS started_checkout,
  SUM(purchased) AS purchased,
  ROUND(SUM(added) * 100.0 / SUM(viewed), 1) AS view_to_cart_rate,
  ROUND(SUM(checkout) * 100.0 / SUM(added), 1) AS cart_to_checkout_rate,
  ROUND(SUM(purchased) * 100.0 / SUM(checkout), 1) AS checkout_to_purchase_rate,
  ROUND(SUM(purchased) * 100.0 / SUM(viewed), 2) AS overall_cvr
FROM funnel;

Funnel Segmentation

-- Funnel by device
SELECT
  device_category,
  COUNT(DISTINCT CASE WHEN step >= 1 THEN user_id END) AS step1_users,
  COUNT(DISTINCT CASE WHEN step >= 2 THEN user_id END) AS step2_users,
  COUNT(DISTINCT CASE WHEN step >= 3 THEN user_id END) AS step3_users,
  ROUND(COUNT(DISTINCT CASE WHEN step >= 3 THEN user_id END) * 100.0 /
        NULLIF(COUNT(DISTINCT CASE WHEN step >= 1 THEN user_id END), 0), 1) AS cvr
FROM funnel_data
GROUP BY device_category;

Analyzing Drop-off Reasons

After identifying "bottleneck"—investigate why:

Tools:

  • Hotjar/Clarity: session recordings of users stuck on step
  • Heatmaps: where they click on problem page
  • Form Analytics: which fields they abandon
// Track abandonment on checkout form
document.querySelectorAll('#checkout-form input').forEach(field => {
  field.addEventListener('blur', () => {
    gtag('event', 'checkout_field_blur', {
      field_name: field.name,
      has_value: field.value.length > 0
    });
  });
});

// Track page exit without submission
window.addEventListener('beforeunload', () => {
  if (document.querySelector('#checkout-form') && !formSubmitted) {
    gtag('event', 'checkout_abandonment', {
      last_field: lastFocusedField
    });
  }
});

Funnel Timing Analysis

Time between steps is also informative:

SELECT
  user_id,
  MIN(CASE WHEN event = 'view_item' THEN timestamp END) AS view_time,
  MIN(CASE WHEN event = 'add_to_cart' THEN timestamp END) AS cart_time,
  MIN(CASE WHEN event = 'purchase' THEN timestamp END) AS purchase_time,
  TIMESTAMP_DIFF(
    MIN(CASE WHEN event = 'purchase' THEN timestamp END),
    MIN(CASE WHEN event = 'view_item' THEN timestamp END),
    MINUTE
  ) AS time_to_purchase_minutes
FROM events
GROUP BY user_id
HAVING purchase_time IS NOT NULL;

If average view→purchase time = 3 days, need retargeting reminder within these days.

Timeline

Event markup + BigQuery analysis + segmentation + report: 3-5 business days.