browser tab
L
Lisa Hutton
Would like my browser tab to say where it is in GHL. I often have a few tabs open. Contacts, automations, settings at the same time and want to flip between them. It would be easier if I knew which was which. THX
Log In
M
Mark Miller
This can be accomplished at the Agency level. I mentioned it to my agency and they implemented it with a Javascript in a matter of a day or two.
From what he told me, it was an easy and fun little project.
D
Drew Sulski
Mark Miller Can you please share step?
D
Drew Sulski
Every other CRM updates the tab title to the "<contact name> - <company> - Contact" or something of that nature. When I worked with Zoho I requested it and they updated the feature within a couple days
There are many requesting the same feature. PLEASE UPVOTE ALL OF THEM:
A
Adolfo de la Paz
Drew Sulski
In the agency view, follow these steps:
2- Look for the "Custom JS" section.
3- Paste the JS code I've provided and replace the data with your agency's information.
4- Locate your sub-account ID in the navigation bar and replace it.
<script>
(function () {
const agencyName = "Your Agency";
const locations = {
"dYbplnCm234ssdfdsfV": "Sub Account 1",
"sfsd2344grkY2tR9MYWG": "Sub Account 2",
};
let lastTitle = "";
function getLocationId() {
const match = window.location.pathname.match(/location\/([^\/]+)/);
return match ? match[1] : null;
}
function updateTitle() {
const locationId = getLocationId();
let title = agencyName;
if (locationId && locations[locationId]) {
title = locations[locationId];
}
if (title !== lastTitle) {
lastTitle = title;
document.title = title;
}
}
setTimeout(updateTitle, 300);
const observer = new MutationObserver(updateTitle);
observer.observe(document.body, {
childList: true,
subtree: true
});
})();
</script>
R
Romulo Pereira
Drew Sulski here's another request i did (Enhancement) with the exact same goal. Let's please Vote, We need this ASAP!
R
Romulo Pereira
Thank you so much for sharing this! I've just tried as your instructions but all that I'm getting is the Name of the Subaccount to be displayed in the Chrome Tab (It replaced my agency name for the customer's subaccount name).
I've ran a quick test here using the approach attached in the PDF and it worked like a charm to me.
PS1: This will apply globally to all subaccounts.
PS2: This will allow the Browser (Eg.: Google Chrome) to display which section of the CRM is being viewed in that Tab - Example: If the user have a tab opened at the automation, the Browser Tab should display: "YOUR AGENCY NAME - Automations"
Ive attached the JS code as a PDF since the comments here only allow up to 2500 characters.
I've also created another version for people who works with multiple languages subaccount so the Page description can work based on the Subaccount language. If anyone needs this version just hit me up.
C
Chris Pope
Yes this is very frustrating especially working with multiple workflows. As a workaround I now have a Chrome extension installed: chrome://extensions/?id=nolmmmfbcjgjejnoajfkikdikaelamcg ("Tab Rename Wiz") which allows you to rename any tab and is persistent across browser sessions. Then I have bookmarked every one for easy access (adding the renamed tab as a bookmark also retains the name in the bookmark title so just drag and drop to the bookmark bar/folder).
A
Alejandro Graffe
Tha browser tab should also have the subaccount!
T
Tommy Embers
YES THIS is a huge time waster when moving around. I have to intentionally set tabs in order, or else im playing the game of "which tab am i looking for"