Yes, thanks. I've found this post and I tried play with .js file. I found this line: Code: if (id == ("MessageSenderName" + type_name)) name_tag = node_tags[i]; and I tried change to this: Code: if (id == ("MessageSenderName" + type_name)) name_tag = "My name"; And I got the result without both names (not my and not from "other") Why ?
if (id == ("MessageSenderName" + type_name)) name_tag = node_tags[i];
if (id == ("MessageSenderName" + type_name)) name_tag = "My name";