Crazy Egg Integrations | Blue Frog Docs

Crazy Egg Integrations

Connect Crazy Egg with your existing tools for enhanced optimization workflows.

Integration Overview

Crazy Egg integrates with popular platforms to fit into your existing workflow.

 


 

CMS Integrations

WordPress

Install the official WordPress plugin:

  1. Go to PluginsAdd New
  2. Search for "Crazy Egg"
  3. Install and activate
  4. Enter your Crazy Egg account ID
  5. Save settings

Shopify

  1. Go to Online StoreThemes
  2. Click ActionsEdit code
  3. Open theme.liquid
  4. Add Crazy Egg script before </head>
  5. Save

Squarespace

  1. Go to SettingsAdvancedCode Injection
  2. Paste Crazy Egg tracking script in Header
  3. Save

Wix

  1. Go to SettingsTracking & Analytics
  2. Click + New ToolCustom
  3. Paste tracking code
  4. Set to load on all pages
  5. Save

 


 

Tag Management

Google Tag Manager

  1. Create new Custom HTML tag
  2. Paste Crazy Egg tracking script
  3. Set trigger to All Pages
  4. 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:

  1. Go to Segment Destinations
  2. Add Crazy Egg
  3. Enter your account ID
  4. 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

  1. Go to StorefrontScript Manager
  2. Create new script
  3. Paste Crazy Egg code
  4. Set location to Head
  5. 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

// SYS.FOOTER