- Help Center
- Configuration
-
Getting Started
-
Configuration
- Targeting
- Split URL
- Product Testing
- Full Stack
- Experiment Management
- CSP Configuration
- Experiment Execution
- Reports
- Exit Popups
- GTM Integration
- Troubleshooting
- Performance Optimization
- Event-Triggered Changes
- Holdout Groups
- Split URL Pages
- URL Parameters
- DataLayer
- Menu Configurations
- Traffic Exclusion
- Experiment Scheduling
- Dynamic Element Changes
- Price Targeting
- Experience Scheduling
- Privacy
- Hash Changes
- Async Tracking
- Selective Installation
- CSS Selectors
- Vue.js Integration
- Page Content
- Multipage Split URL
- Organic Traffic
- Visual Editor
- Server-Side Testing
- Traffic Bucketing
- GDPR Warnings
- Statistical Confidence
- Browser Privacy
- Query Parameters
- Embedded Videos
- Tracking Code Execution
- Simultaneous Experiments
- Tags
- Deployments
- Disable Testing
- Locations
- Programmatic Bucketting
- Query Parameter Handling
- Convert Library
- Variation Previews
- Experiment Editing
- Opt-Out Script
- Data Reset
- Body Hiding
- Visit-Specific Variations
- Variation Styling
- Preview Issues
- Variation Editing
- Full-Site Testing
- Blinking Variations
- Cross-Domain Cookies
- Regex Support
- Conversion Tracking
- SPA Testing
- Project Setup
- Cross-Domain Tracking
- Geo-Targeting
- Analytics Tools
- Campaign Tags
- Previewing
- IDs
- Query String Targeting
- Bounce Rate Goals
- Bot Filtering
- Query String Variables
- Custom Audiences
- Redirects
- Baseline
- Tracking Code Location
- Secure Cookies
- AngularJS
- Cloudflare
- Code Installation
-
Track Goals
- Form Tracking
- Cookie Management
- iFrame Click Tracking
- Performance Optimization
- Revenue Tracking
- Interaction Goals
- Form Submissions
- Advanced Goals
- Lazy Loading
- Multi-Conversions
- URL Parameters
- Bounce Rate Goals
- DataLayer Integration
- Scroll Depth
- Social Interactions
- Page Views
- Marketo Forms
- Feature Analysis
- AJAX Forms
- Revenue Tracking via GTM
- Order Outliers
- Cumulative Revenue
- Goal Templates
- Adding Revenue Goals
- JS-Based Goals
- Goal Basics
- Google Analytics Goals
- Social Sharing
- Dynamic Goals
- Typeform Integration
-
Target Visitors
- Geolocation
- Interaction Goals
- Goal-Based Targeting
- Weather Targeting
- Cookie-Based Targeting
- Page Visits
- Audience Management
- Audience Segmentation
- Experiment Targeting
- Advanced Audience Creation
- Audience Templates
- Audience Creation
- Data Layer Integration
- Manual Activation
- JavaScript Conditions
- Device Targeting
- Language Targeting
- IP-Based Exclusion
- Visitor Management
- Page Tagging
- Cookies
-
Troubleshooting
- Google Warnings
- Visual Editor
- HTTPS Content
- Logs
- Support Options
- Bootstrap
- Cookie Blocking
- Change History
- Mobile Debugging
- AdWords
- Bot Exclusion
- Domain Issues
- Cloudflare Issues
- Monitoring
- Cloaking Penalties
- Goal Editor Issues
- Variations
- Snippet Performance
- Changes Not Saved
- Blocked Visual Editor
- Goal Testing
- Visual Editor Browsing
- Experiment Issues
- Installation Verification
- Data Leak Prevention
- Usage Limits
- Experiment Previews
- GA4 Revenue
- Chrome Debugger Logs
- SPA Errors
- Checkout JSON Error
-
Analyze Results
-
Integrations
- Google Analytics
- Cookie Consent Platforms
- Microsoft Clarity
- Plausible
- Marketo
- HubSpot
- Tealium
- Smartlook
- Klaviyo
- Salesforce CRM
- FullStory
- Snowplow Analytics
- Webflow
- GA4 Roles
- Amplitude
- Segment
- React
- BigCommerce
- WooCommerce
- Active Campaign
- Google Tag Manager
- Mixpanel
- Zapier
- Inspectlet
- Crazy Egg
- LanderApp
- Unbounce
- Instapage
- Drupal
- PrestaShop
- Magento
- Roistat
- Piano Analytics
- Heap Analytics
- Kissmetrics
- Mouseflow
- Adobe Analytics
- Clicky
-
Account Management
-
Developers
-
What's New
-
Common Questions
-
Shopify
How to Change the dataLayer Variable Name in Convert Experiments?
If you're using Convert Experiments and need to change the default dataLayer
variable name to which the experiment data will be appended, follow these steps. This is essential for situations where you are working with custom implementations of Google Analytics 4 (GA4) or Google Tag Manager (GTM).
Prerequisites
Before proceeding, ensure that the GA4 integration is enabled in your Convert Experiments setup. This is required for the dataLayer customization to work correctly.
Steps to Change the DataLayer Variable Name
For GA4
To customize the dataLayer
variable name when using GA4, you'll need to append a custom parameter to your tracking script. Here’s how to do it:
-
In your Global JavaScript (
GlobalJS
), add the following line:javascriptCopy codewindow._conv_q.push({ what: 'setIntegrationVariable', params: { integration: 'google_analytics', customVariable: 'yourCustomDataLayerName' } });
Replace
'yourCustomDataLayerName'
with the desired name for yourdataLayer
. -
This ensures that the experiment data will be appended to the renamed dataLayer instead of the default one.
For GTM
If you're using Google Tag Manager (GTM), the process is slightly different:
-
Modify the fourth argument of the
init
function in your GlobalJS:javascriptCopy codewindow._conv_q.push({ what: 'setIntegrationVariable', params: { integration: 'googletagmanager', customVariable:'yourCustomDataLayerName' } });
Replace
'yourCustomDataLayerName'
with the new dataLayer variable name. -
Alternatively, for the legacy tracking code (non v1), you can use the following method in your GlobalJS:
javascriptCopy codeconvert.integration_setting('gtm', 'dlv', 'yourCustomDataLayerName');
Again, replace
'yourCustomDataLayerName'
with the desired name.
Summary
- GA4 Integration: Required for custom dataLayer name support.
- Custom GA4 dataLayer: Use
window._conv_q.push
in GlobalJS. - Custom GTM dataLayer: Modify the fourth argument in the
init
function or useconvert.integration_setting
for the legacy tracking code (non v1).
By following these steps, you can successfully change the default dataLayer
name in your Convert Experiments setup, ensuring that your analytics data is sent to the correct variable.