Changer titre Portail Bonita

Bonjour,

Je veux changer le titre du portail, je trouve pas ou il faut le changer dans le thème de Bonita,
pouvez-vous m’aider s’il vous plaît ?

Merci

Bonjour,

Quel titre cherchez vous a modifier exactement? Le titre dans le navigateur web?

Il y a des informations ici qui expliquent comment modifier le Look & Feel du portail.

Aussi il est possible de creer une Living Application qui est completement customisable.

Lionel

You either need to do this:

  1. download the source find the right HTML template change it, and recompile so it has your new name

Or

  1. add a custom widget to every page/form

Delete everything in the template
Delete everything in the Controller and add the following code

function ($scope) {

var newTitle = "my custom title";
if (document.title != newTitle) {
    document.title = newTitle;
}

}

which will give you a new title;

Tested and working!

regards
Seán

PS: As this reply answers your question, please mark as resolved.

Oui le titre du navigateur web, il est par défaut : Bonita BPM Portal, dans la documentation (lien que vous veniez me le transmettre) y a pas grand chose …

If you find the template for the newForm, you could also add the above custom widget to it so you don’t have to do it every time (and sometimes forgetting :slight_smile: