Shopify Setup
Get RetailerBoost running on your Shopify store in about 5 minutes.
Add Customer Journey Tracking
Paste our tracking script in your theme's <head> section.
<script src="https://app.retailerboost.com/js/retailerboost.min.js?store=YOUR_STORE_ID" defer></script>
Install Conversion Pixel
Add our custom pixel to track completed checkouts.
(function() {
// RetailerBoost Conversion Pixel v1.x.x
const STORE_ID = 'YOUR_STORE_ID';
const BACKEND_URL = 'https://app.retailerboost.com';
const JOURNEY_KEY = 'rboost_journey';
analytics.subscribe('checkout_completed', function(event) {
var checkout = event.data.checkout;
var journeyId = null;
try {
journeyId = localStorage.getItem(JOURNEY_KEY);
} catch(e) {}
var payload = {
store_id: STORE_ID,
order_id: checkout.order.id,
order_total_cents: Math.round(checkout.subtotalPrice.amount * 100),
currency: checkout.currencyCode,
order_number: checkout.order.name,
journey_id: journeyId
};
fetch(BACKEND_URL + '/api/conversions', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(payload)
}).catch(function() {});
});
})();Connect Google Merchant Center
Grant access so we can connect our ads account to your product feed.
Add Our Admin User
Fastest methodWe'll connect our ads account to your MCA for you.
- Log into Google Merchant Center
- Go to Settings > Users and access
- Click + Add User with the email above
- Set access to Admin and save
Provide MCA ID Only
We'll send a connection request and you need to approve it in the email sent from Google. The email may arrive within 24 to 48 hours.
Find your ID in your Merchant Center dashboard (top right corner or account settings).
Enter your MCA ID in the RetailerBoost dashboard.
You can also do both if you want - adding the admin user speeds things up even if you've already provided your MCA ID.
What Happens Next?
Once complete, within 1 to 3 business days we review your setup, connect our Google Ads account, and launch your campaigns. You'll receive an email when you're live.