RITM Form: How to change the name of the variable editior formatter?

Sujatha V M
Kilo Patron
Kilo Patron

Hi Team, 

I would like to change the label name of "Variable Editor" formatter from "Variables" to custom specific. 

Can someone help on this? How to change the label name?

find_real_file.png

 

Please mark this as helpful and accept it as a solution if this resolves your query.
Sujatha V.M.
1 ACCEPTED SOLUTION

Simon Christens
Kilo Sage

Hi

If everything else fails

Create an onLoad Client script with:

var x = document.getElementsByClassName("veditor_header");
x[0].innerHTML = "Very important Variables or another fancy name";

For newer instances REMEBER to clear the checkbox "Isolate script" in the client script.
Is this best practice ? Probably not

find_real_file.png

View solution in original post

5 REPLIES 5

Simon Christens
Kilo Sage

Hi

If everything else fails

Create an onLoad Client script with:

var x = document.getElementsByClassName("veditor_header");
x[0].innerHTML = "Very important Variables or another fancy name";

For newer instances REMEBER to clear the checkbox "Isolate script" in the client script.
Is this best practice ? Probably not

find_real_file.png