View Single Post
Schturman's Avatar
Posts: 5,339 | Thanked: 4,133 times | Joined on Jan 2010 @ Israel
#371
Hi !

I tried to change the name of "Other" in SMS and IM conversation (js file), but without result

I tried to play with this lines for SMS:
Code:
if (item.name_str != "") {
        name_tag.textContent = item.name_str;
    }

if (item.name_str != "" && item.self) {
        name_tag.textContent = "b666m";
    }

and with this lines for IM:

Code:
if (item.name_str != "" && name_tag) {
        name_tag.innerHTML = item.name_str;
    }

if (item.name_str != "" && name_tag && item.self) {
        name_tag.innerHTML = "yourname";
    }
b666m, can you help me please ?
Thanks