2) QR link script (tracking + forms + automation)
Goal: auto-tag the partner, prefill your quote form, and fire an instant “we got it” text.
Link structure (example)
https://mikesoutfitters.com/quote?partner=DLR23&source=partnercard&utm_source=partnercard&utm_medium=referral&utm_campaign=ppj_q3_2025
partner= the unique code on the card (e.g., DLR23, TIR07).
Keep codes short (3–6 chars). Avoid special characters.
If you’re using a Google Form:
- Create fields: Full Name, Mobile, Email, Vehicle (Year/Make/Model), Need (e.g., Bedliner / Step bars / Tonneau), Notes.
- Enable prefill: click “Get pre-filled link,” add a hidden short-answer field named Partner Code, paste DLR23 as an example, copy link.
- Replace the example value in the URL with {{partner}} token in your website redirect script (below).
Simple redirect script (drops the partner code into your form/CRM)
<!-- Put this on /quote -->
<script>
(function () {
const params = new URLSearchParams(window.location.search);
const partner = params.get('partner') || 'DIRECT';
// send to your form with partner param
const target = `https://forms.gle/your-google-form-id?usp=pp_url&entry.12345=${partner}`;
// OPTIONAL: include UTM params if present
const utm = ['utm_source','utm_medium','utm_campaign','source']
.map(k => params.get(k) ? `&${k}=${encodeURIComponent(params.get(k))}` : '')
.join('');
window.location.href = target + utm;
})();
</script>
Replace entry.12345 with your Google Form field ID for “Partner Code” (get it from the prefilled link).
Landing copy (if you host your own quick form)
Headline: Referred by {{PartnerName}} — Get Your No-Haggle Quote in 5 Minutes
Sub: We’ll text/call during business hours. No spam. No pressure.
Form fields: Name, Mobile, Email, Year/Make/Model, What you want (Bedliner / Step bars / Tonneau / Other), Preferred day.
Button: “Get My Quote”
Trust line: Local, warrantied installs. Most trucks done same day.
Instant confirmation text (from your CRM/SMS tool)
“Got it — this is {{ShopName}}. You’re priority because {{PartnerName}} sent you.
We’ll call in ~5 minutes (Mon–Fri {{Hours}}). Need a time instead? Reply 1.”
Weekly payout text to each partner (builds trust)
“{{PartnerName}} — you sent {{X}} jobs, {{Y}} closed. Paying ${{SpiffTotal}} today. Thanks for the trust. — {{ShopName}}”
QR code tips
- Use error correction H and a quiet zone (white border).
- Always print the short URL under the QR: mikesoutfitters.com/quote
- Test scanning from a greasy counter and under low light.