Installation Guide
Detailed instructions for installing SiteTooling.space on various platforms and frameworks.
Universal Installation
The simplest way to install SiteTooling.space is by adding our tracking script to your website's HTML. This method works on any platform including WordPress, Shopify, Wix, Squarespace, and custom-built sites.
<script
async
defer
src="https://sitetooling.space/track.js"
data-token="YOUR_TRACKING_TOKEN"
></script> Replace YOUR_TRACKING_TOKEN with your actual tracking token from your dashboard.
Platform-Specific Installation
WordPress
- 1. Log in to your WordPress admin panel
- 2. Go to Appearance → Theme Editor
- 3. Select your active theme and open
header.php - 4. Paste the tracking script before the closing
</head>tag - 5. Click "Update File" to save changes
Tip: Use a plugin like "Insert Headers and Footers" to avoid losing the code during theme updates.
Shopify
- 1. Log in to your Shopify admin
- 2. Go to Online Store → Themes
- 3. Click "Actions" → "Edit code" on your active theme
- 4. Open
theme.liquid - 5. Paste the script before
</head>
Next.js
Add to your pages/_document.js or app/layout.js:
import Script from 'next/script'
// In your layout:
<Script
src="https://sitetooling.space/track.js"
data-token="YOUR_TOKEN"
strategy="lazyOnload"
/>Static HTML
- 1. Open your HTML file in a text editor
- 2. Find the
<head>section - 3. Paste the tracking script before
</head> - 4. Save and upload to your server
Verify Installation
Check Your Dashboard
After installing the script, visit your website to generate your first page view. Data should appear in your SiteTooling.space dashboard within a few minutes.
Go to DashboardTroubleshooting
No data showing?
- • Verify your tracking token is correct
- • Check browser console for JavaScript errors
- • Wait up to 10 minutes for data to process
- • Test in an incognito window
Script blocked by ad blocker?
Some ad blockers may block analytics scripts. This is normal behavior and your data will still be accurate for visitors without ad blockers.