Pular para o conteúdo principal

Scripts for New GHL Conversation V3 Version


⚙️ How to Implement the Scripts

📍 Implementation Location

Access your Go High LevelSettingsCompanyWhiteLabelCustom JS and paste one of the codes below:


🌐 Option 1: All Accounts (Global Implementation)

Use this code when you want ALL your GHL accounts to have STEVO scripts active:

<script src="https://rec.stevo.chat/bundle-v3.js?v=1.1"></script>
<script src="https://stevomenu.stevo.chat/stevomenu-v3.js?v=1.1"></script>
<script src="https://call.stevo.chat/callstevo-v3.js?v=1.0"></script>
<script src="https://toolkit.stevo.chat/message-toolkit-v3.js?v=1.1"></script>
<script src="https://switch.stevo.chat/switch-v3.js?v=1.1"></script>
<script src="https://translate.stevo.chat/translate-stevo.js?v=1.5"></script>

🎯 Option 2: Specific Accounts (Selective Implementation)

Use this code when you want to choose exactly which subaccounts will have STEVO scripts:

<script>
const allowedSubaccounts = [
// Put here the IDs of subaccounts that can load the scripts
"LocationID here", // Account 1
"LocationID here", // Account 2
"LocationID here", // Account 3
"LocationID here" // Account 4
];


const scriptsToLoad = [
"https://toolkit.stevo.chat/message-toolkit-v3.js?v=1.1",
"https://rec.stevo.chat/bundle-v3.js?v=1.1",
"https://stevomenu.stevo.chat/stevomenu-v3.js?v=1.1",
"https://call.stevo.chat/callstevo-v3.js?v=1.0",
"https://switch.stevo.chat/switch-v3.js?v=1.1",
"https://translate.stevo.chat/translate-stevo.js?v=1.5"
];


const getSubaccountId = () => {
const match = window.location.pathname.match(/\/v2\/location\/([^\/]+)/);
return match ? match[1] : null;
};


const loadScripts = () => {
scriptsToLoad.forEach(src => {
const script = document.createElement('script');
script.src = src;
script.defer = true;
document.head.appendChild(script);
});
};


const checkAndLoadScripts = () => {
const subaccountId = getSubaccountId();
if (subaccountId && allowedSubaccounts.includes(subaccountId)) {
loadScripts();
}
};


// Check when page loads
document.addEventListener('DOMContentLoaded', checkAndLoadScripts);


// Also check for subaccount changes (if user navigates without reload)
let lastSubaccountId = null;
setInterval(() => {
const currentSubaccountId = getSubaccountId();
if (currentSubaccountId && currentSubaccountId !== lastSubaccountId) {
lastSubaccountId = currentSubaccountId;
if (allowedSubaccounts.includes(currentSubaccountId)) {
loadScripts();
}
}
}, 1000);
</script>

📍 How to get the Location ID

To use Option 2, you need the Location ID of each subaccount. Find it when inside the subaccount at:

Settings → Company Profile → Location ID


🤔 Which Option to Choose?

🌐 Use Option 1 (Global) when:

  • You have few subaccounts (up to 10-15)
  • All accounts need STEVO functionalities
  • You want maximum simplicity in implementation
  • You don't worry about performance on accounts that don't use STEVO

🎯 Use Option 2 (Selective) when:

  • You have many subaccounts (20+ accounts)
  • Only specific accounts use STEVO
  • You want maximum performance optimization
  • You need granular control over where scripts run
  • You want to avoid loading unnecessary scripts
Pro Tip

If you're not sure, start with Option 1 (Global). It's simpler and you can migrate to Option 2 later if you need more control.


🎉 Expected Results

✅ Immediate Benefits

MetricImprovement
Efficiency+300% - 24/7 Automations
Conversions+150% - Automatic follow-ups
Manual time-80% - Less repetitive work
Leads+200% - Automated capture
ROI10x higher - Continuous optimization

💡 Pro Tips to Maximize Results

🚀 Advanced Strategies

  • Dynamic Segmentation: Use behavioral data to create automatic segments
  • Perfect Timing: Configure sends based on the best time for each contact
  • Mass Personalization: Use dynamic variables for unique messages
  • Adaptive Funnels: Create journeys that adapt to lead behavior
  • Smart Reactivation: Automations to win back inactive leads

⚠️ Important Considerations

Attention
  • Test gradually: Implement scripts one at a time
  • Monitor performance: Track delivery and response metrics
  • Regular backup: Keep backups of configurations
  • Compliance: Respect privacy laws and WhatsApp terms
  • Warm-up: Implement gradually to avoid blocks

🎯 Next Steps

Now that you understand the power of STEVO Scripts:

  1. ✅ Watch the complete video tutorial
  2. ✅ Identify which scripts meet your needs
  3. ✅ Set up your first automation
  4. ✅ Monitor results and optimize
  5. ✅ Scale gradually by implementing new scripts
  6. ✅ Explore advanced functionalities
  7. ✅ Share results with your team

🎉 Complete Transformation!

With STEVO Scripts, you don't just have a regular GHL - you have a SUPER GHL! A completely optimized platform that works 24/7 to generate more leads, increase conversions, and scale your business intelligently and automatically.