function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
S PawarS Pawar 

renaming Home tab

Hi,

 

How i rename Home tab in salesforce?

 

 

 

 

regards,

Sagar

Best Answer chosen by Admin (Salesforce Developers) 
Ankit Gupta@ DeveloperAnkit Gupta@ Developer

Hi,

There is no direct way to rename the home tab in salesforce.

You can rename the home tab from javascript.

Create a html area home component with following code

 

<script>

  var gethometab=document.getElementById('home_Tab');

 gethometab.getElementsByTagName("a")[0].setAttribute("title","test");

  gethometab.getElementsByTagName("a")[0].innerHTML="test";

 

 </script>

 

Add the home component in home page layout.

 

All Answers

Ankit Gupta@ DeveloperAnkit Gupta@ Developer

Hi,

There is no direct way to rename the home tab in salesforce.

You can rename the home tab from javascript.

Create a html area home component with following code

 

<script>

  var gethometab=document.getElementById('home_Tab');

 gethometab.getElementsByTagName("a")[0].setAttribute("title","test");

  gethometab.getElementsByTagName("a")[0].innerHTML="test";

 

 </script>

 

Add the home component in home page layout.

 

This was selected as the best answer
Sagar PawarSagar Pawar

Hi,

 

when I click on other tab of customer portal then name again changes to Home. please tell me the solution

 

 

Regards,

Sagar Pawar

SharathKumar ReddySharathKumar Reddy
Hi,
How to rename 'Home' tab in customer community?
Shanthi Priya MShanthi Priya M
 Hi SharathKumar Reddy,
https://www.w3schools.com/cssref/tryit.asp?filename=trycss_text-transform
this helped me to rename the home tab in community..

thank u