How to install the tracking script on WordPress, Shopify, Webflow and other platforms
Installing the Tracking Pixel
The pixel is a small JavaScript snippet you install on your website so Superplural Analytics can record visits and events.
Where to find the code
- Go to Websites in the sidebar
- Click the settings icon on your website
- The pixel code is shown in the Installation Code section
General installation (plain HTML)
Copy the code and paste it before the closing </head> tag on every page you want to track:
<script src="https://analytics.superplural.com/pixel/YOUR_KEY" data-pixel="YOUR_KEY" defer></script> WordPress
Option 1 (recommended): Use a plugin like Insert Headers and Footers or WPCode. Paste the code in the Header section.
Option 2 — functions.php:
function add_analytics_pixel() { echo '<script src="https://analytics.superplural.com/pixel/YOUR_KEY" data-pixel="YOUR_KEY" defer></script>'; } add_action('wp_head', 'add_analytics_pixel'); Other platforms
- Shopify: Themes → Edit code →
theme.liquidbefore</head> - Webflow: Project Settings → Custom Code → Head Code
- Wix / Squarespace: Settings → SEO / Custom code in Head
Verifying the pixel
After installing, open your website and press F12 to open DevTools. In the Network tab, filter by "pixel" — you should see a request being made to analytics.superplural.com.