@Louise Haines9 Here is the code to change the name of the Home button:
<script>
window.Tribe = {
onReady: function(pathname) {
var elem = document.querySelector('header > nav > div > a:nth-child(2) .mobile');
elem.innerHTML = '<span>Feed</span>';
elem.style10.visibility = "visible";
}
}
</script>
Please note that in the code block mentioned above, I have kept it as Feed
. You can replace it with anything else.
Learn more about how you can customize your community with JavaScript here28.