Simvoly Analytics Integrations: Setup Guide | OpsBlu Docs

Simvoly Analytics Integrations: Setup Guide

Integrate GA4, GTM, and Meta Pixel with Simvoly using the built-in integrations panel, custom code injection, and funnel tracking.

Simvoly is a website and funnel builder platform that combines website creation with sales funnel functionality. It provides built-in integration panels for popular analytics platforms and a custom code injection feature for additional tracking scripts.

Integration Architecture

Simvoly provides three integration paths:

  1. Built-in Integrations Panel -- Navigate to Settings > Integrations to connect Google Analytics, Facebook Pixel, and other platforms using their tracking IDs. No code editing required.
  2. Custom Code Injection -- Navigate to Settings > Custom Code to add arbitrary HTML/JavaScript to the <head>, <body> start, or <body> end sections. Available on the Personal plan and above.
  3. Funnel-Level Tracking -- Simvoly's funnel builder has separate analytics settings per funnel, allowing different tracking configurations for landing pages vs main website pages.

Available Integrations

Analytics Platforms

Google Analytics 4

  • Built-in GA integration (Settings > Integrations > Google Analytics)
  • Custom Code with full gtag.js
  • GTM-based GA4 (recommended for advanced tracking)

Tag Management

Google Tag Manager

  • Custom Code head/body injection
  • Not available via built-in integrations panel

Marketing Pixels

Meta Pixel

  • Built-in Facebook Pixel integration (Settings > Integrations > Facebook Pixel)
  • Via GTM container for advanced configuration

Built-in Integrations (Simplest)

Navigate to Settings > Integrations in your Simvoly dashboard. The platform provides dedicated fields for:

  • Google Analytics -- Enter your Measurement ID (G-XXXXXXXXXX)
  • Facebook Pixel -- Enter your Pixel ID
  • Google Tag Manager -- Enter your GTM container ID (GTM-XXXX)

For GTM via Custom Code with a data layer:

<!-- Settings > Custom Code > Head -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;
j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;
f.parentNode.insertBefore(j,f);})(window,document,'script','dataLayer','GTM-XXXX');</script>

<script>
window.dataLayer = window.dataLayer || [];
window.dataLayer.push({
  'platform': 'simvoly',
  'pageTitle': document.title,
  'pagePath': window.location.pathname,
  'pageType': window.location.pathname.includes('/funnel/') ? 'funnel' : 'website'
});
</script>

Platform Limitations

Limited data layer. Simvoly does not expose page metadata (page type, category, funnel step) to JavaScript natively. The data layer is limited to DOM-derived values (document.title, window.location) unless you manually enrich it.

Funnel vs website separation. Simvoly treats funnels and websites as separate entities with independent settings. Tracking code added to the website settings does not apply to funnels, and vice versa. You must configure tracking in both places for complete coverage.

No ecommerce data layer. Simvoly's built-in ecommerce (product pages, checkout) does not push structured ecommerce events to a data layer. Purchase tracking requires DOM scraping on the thank-you page or using Simvoly's webhook integrations to forward order data externally.

Plan-gated features. Custom Code injection requires the Personal plan or higher. The free plan is limited to built-in integration fields only.

No server-side access. Simvoly is a hosted platform with no backend access, no API for custom server-side implementations, and no webhook configuration for analytics events (webhooks exist for form submissions and orders, but not for page-level tracking).

Performance Considerations

  • Builder framework overhead. Simvoly injects its own JavaScript framework for the drag-and-drop builder functionality. This adds baseline page weight that tracking scripts load on top of.
  • Funnel page optimization. Simvoly's funnel pages are designed for conversion speed and are typically lighter than full website pages. Additional tracking scripts have proportionally larger impact on funnel page load times.
  • Built-in vs custom. Using Simvoly's built-in GA/Facebook integrations loads scripts through Simvoly's optimized injection path. Custom Code scripts load separately and may not benefit from the same optimization.
  1. Use built-in integrations for GA4 and Facebook Pixel if basic tracking suffices
  2. Add GTM via Custom Code for advanced tag management needs
  3. Configure both website and funnel tracking -- Simvoly requires separate configuration for each
  4. Add DOM-based data layer -- Extract page context from URL patterns and document title

Next Steps

For general integration concepts, see the integrations overview.