Multi-Platform Deployment Guide

Frictionless privacy configurations across modern web infrastructure, frameworks, and CMS engines.

Google Tag Manager ● LIVE

Deploy CookiePrime instantly via our lightweight custom template container, enabling complete Google Consent Mode v2 support without changing your core source code.

Step-by-Step GTM Installation

  1. Download the custom CookiePrime Tag Template definition file using the secure button link below.
  2. Open your Google Tag Manager dashboard container, go to Templates, click New under Tag Templates, and choose Import from the top-right context menu.
  3. Upload our downloaded cookieprime-cmp.tpl resource and click Save.
  4. Go to Tags, click New, and select the newly imported CookiePrime CMP definition block.
  5. Enter your unique Site ID / API Key retrieved from your account dashboard panel.
  6. Set the tag trigger to fire on the Consent Initialization - All Pages built-in event layer, then publish your workspace.

Advanced Consent Mode v2 Support

The template automatically configures the 4 native core Google signals (ad_storage, `analytics_storage`, `ad_user_data`, and `ad_personalization`) in their secure default state, applying a standard `wait_for_update: 500ms` window fallback window to eliminate latency drop-offs.

Download GTM Template Archive (.tpl)

Shopify Storefront ⏱ IN STORE REVIEW

Configure automated privacy tracking layers over your storefront blocks via the Shopify GraphQL Billing and Customer Privacy API systems.

Storefront Activation Flow

  1. Search for CookiePrime inside the Shopify integration app marketplace layout and trigger Install.
  2. Upon workspace authorization, our background service automatically queries your storefront's inventory volume to resolve your license tier placement.
    • Stores maintaining fewer than 500 catalog items route directly to the Growth Plan ($5.00/mo).
    • Enterprise inventories containing 500+ items scale safely to the Business Plan ($10.00/mo).
  3. Approve the subscription terms on the automated billing confirmation screen to authorize deployment.
  4. Paste your API Key (Domain ID) into the designated field within the app UI and click Save.
  5. Navigate to your Shopify store's frontend. The CookiePrime consent banner will now render successfully.

WordPress Plugin Directory ● LIVE

Inject global cookie consent rules directly through our native, approved WordPress plugin architecture with full WP Consent API interoperability.

Plugin Activation Steps

  1. Navigate to your WordPress core administration dashboard section, open Plugins > Add New, and search for "CookiePrime".
  2. Click Install Now and activate the verified bundle.
  3. Open Settings > CookiePrime inside your administrative workspace navigation panel.
  4. Paste your unique API Key (Domain ID) into the configuration box and click save to activate your tracking banner across storefront loops.

* Alternative Manual Installation: Download the verified plugin ZIP container directly from our marketing site, upload it through the plugin page installer framework, and activate manually.

Wix App Market ⏱ IN MARKET REVIEW

Easily integrate your global consent banner into your Wix website in just a few clicks without writing any code.

Wix Integration Sequence

  • Premium Requirements: Wix requires your website to maintain a Premium Plan layout connected to a custom domain (e.g., www.yourwebsite.com) to authorize custom script extensions.
  1. Navigate to the Wix App Market inside your dashboard workspace and search for CookiePrime.
  2. Click Add to Site and authorize the basic management permissions.
  3. Open your Wix Website Dashboard panel, locate the left-hand menu, and go to Apps > Manage Apps.
  4. Open **CookiePrime**, paste your unique **API Key (Domain ID)** into the field, and click **Save Settings**.
  5. Open your main Wix Website Editor window and click the blue **Publish** button at the top right to push the changes live.

React / Next.js SDK ● LIVE (v1.0.1)

An SSR-safe, global React package optimizing runtime evaluation layers and component hooks across modern node execution stacks.

SDK Implementation

Pull our validated production distribution package directly via your terminal registry:

npm install @cookieprime/react-consent

1. Initialize Wrapper Provider Context

Wrap your primary target layout structure inside our global context layer:

import { CookiePrimeProvider } from '@cookieprime/react-consent'; export default function RootLayout({ children }) { return ( <html lang="en"> <body> <CookiePrimeProvider apiKey="YOUR_API_KEY"> {children} </CookiePrimeProvider> </body> </html> ); }

2. Enforce Script Checks with Custom Hooks

Conditionally gate non-essential analytics script blocks right inside your reactive rendering loops:

import { useConsent } from '@cookieprime/react-consent'; export default function AnalyticsTracker() { const { consent } = useConsent(); if (!consent?.analytics) return null; return <script src="https://example.com/tracker.js" />; }

Custom HTML Script Injection ● LIVE

Copy and paste a single asynchronous content asset tag into your core site markup to instantiate automatic tracking intercept definitions.

Header Script Block

Paste the following script element directly at the absolute top of your website's primary <head> template block. To prevent data leakage, ensure this element processes before other inline tracking elements.

<!-- Global CookiePrime Privacy Architecture Engine --> <script src="https://storage.googleapis.com/cookieprime_bucket/public/loader.js" data-id="YOUR_SITE_ID_OR_API_KEY"> </script>

Replace the placeholder data-id parameter string with your real dashboard license key to establish a secure client connection.