Full Answer
Most common tracking bug: The problem: JavaScript executes in order. When one script throws an uncaught error, everything after it stops running. The scenario: 1. Plugin A loads (works fine) 2. Plugin B loads (throws JavaScript error) 3. Everything stops 4. Tracking code never executes 5. Analytics shows zero data How to identify: 1. Open browser console (F12) 2. Look for red error messages 3. Note which script caused error 4. That's your culprit Common error sources:
- Outdated jQuery plugins
- Theme JavaScript conflicts
- Slider/carousel plugins
- Chat...
