Has anyone created a script or snippet of code to customize their search banner?
I’d like to do something that says Welcome @First Name or Welcome @username and it pulls the first name or user name from their registration information.
Has anyone created a script or snippet of code to customize their search banner?
I’d like to do something that says Welcome @First Name or Welcome @username and it pulls the first name or user name from their registration information.
Yeah, you could do that :)
Just tried it on my “artful community” demo sandbox
Code is fairly straightforward:
<script>
var element = document.querySelector("body.qa-forum-site-index h1.brand-hero-title");
var username = inSidedData.user.name;
if (username !== "guest") {
element.innerHTML = "Welcome " + username;
}
</script>
Enter your username or e-mail address. We'll send you an e-mail with instructions to reset your password.