Enhance Plumsail Orgchart Menu for users?

Hi @Jeniffer_Rivera,

You can use the following script to change the URL of the Home button:

api.onLoadingFinished(() => {
    let homeBtn = $('a[title="Home"]');
    homeBtn[0].href = "https://www.abc.com/";
});

Replace https://www.abc.com/ with your link.

As for adding a button to switch between offices, see a similar solution below: