Whitelabel branding
In order to remove our Project Blue branding from the conversation’s tab, you’ll need to utilize a custom script to update the nav to allow for this
Example after implementing script:
Directions:
Head over to your agency account settings (Found in the left hand nav bar)
Navigate over to Company > Whitelabel from the left hand top nav bar
Scroll down to Custom JS and add the Script file below, paste it, save changes then please proceed to the desired sub account where Project Blue is installed and you’ll see our iMessage only option
Javascript:
<script> const observer = new MutationObserver(() => { const tabs = document.querySelectorAll('.nav-link.open-sms-tab'); const target = Array.from(tabs).find(tab => tab.textContent.trim() === 'Project Blue iMessage'); if (target) { target.textContent = 'iMessage'; observer.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true, }); </script>