Integration Overview
Crazy Egg integrates with popular platforms to fit into your existing workflow.
CMS Integrations
WordPress
Install the official WordPress plugin:
- Go to Plugins → Add New
- Search for "Crazy Egg"
- Install and activate
- Enter your Crazy Egg account ID
- Save settings
Shopify
- Go to Online Store → Themes
- Click Actions → Edit code
- Open
theme.liquid - Add Crazy Egg script before
</head> - Save
Squarespace
- Go to Settings → Advanced → Code Injection
- Paste Crazy Egg tracking script in Header
- Save
Wix
- Go to Settings → Tracking & Analytics
- Click + New Tool → Custom
- Paste tracking code
- Set to load on all pages
- Save
Tag Management
Google Tag Manager
- Create new Custom HTML tag
- Paste Crazy Egg tracking script
- Set trigger to All Pages
- Publish container
<script type="text/javascript">
setTimeout(function(){
var a=document.createElement("script");
var b=document.getElementsByTagName("script")[0];
a.src=document.location.protocol+"//script.crazyegg.com/pages/scripts/XXXX/XXXX.js";
a.async=true;a.type="text/javascript";
b.parentNode.insertBefore(a,b)
}, 1);
</script>
Segment
Send data to Crazy Egg via Segment:
- Go to Segment Destinations
- Add Crazy Egg
- Enter your account ID
- Enable the destination
Analytics Integrations
Google Analytics
Link Crazy Egg insights with GA data:
- Use same page URLs for correlation
- Compare heatmap data with GA metrics
- Validate behavioral patterns
Other Analytics Tools
Crazy Egg complements (doesn't replace):
- Quantitative tools (GA, Mixpanel)
- Use Crazy Egg for qualitative "why"
- Use other tools for quantitative "what"
Optimization Platforms
Optimizely
Use Crazy Egg data to inform Optimizely experiments:
- Identify problem areas with heatmaps
- Create hypotheses from recordings
- Test solutions in Optimizely
VWO
Similar workflow:
- Diagnose with Crazy Egg visuals
- Experiment with VWO
- Validate improvements
E-commerce Platforms
Magento
Add tracking code via:
- Admin panel script injection
- Theme template files
- Extension/module
BigCommerce
- Go to Storefront → Script Manager
- Create new script
- Paste Crazy Egg code
- Set location to Head
- Save
WooCommerce
Use WordPress plugin or add manually:
// functions.php
function add_crazy_egg() {
?>
<script type="text/javascript">
// Crazy Egg tracking code
</script>
<?php
}
add_action('wp_head', 'add_crazy_egg');
API Access
REST API
Crazy Egg provides API access for:
- Retrieving snapshot data
- Managing A/B tests
- Exporting recordings
curl -X GET "https://api.crazyegg.com/v1/snapshots" \
-H "Authorization: Bearer YOUR_API_KEY"
Use Cases
- Automated reporting
- Custom dashboard integration
- CI/CD deployment triggers