My Account text after login
-
I want to change the text hello to welcome or something else after and also i need to restrict number of character in the username. I have attached the screenshot below…
Attachments:
You must be
logged in to view attached files.
Hello,
You can change the greeting text using the Loco Translate plugin.
https://www.youtube.com/watch?v=D3NsDdMzsls
And restrict the number of characters in the username using Custom CSS.
.wd-header-my-account .wd-tools-text {
text-overflow: ellipsis;
max-width: 105px;
white-space: nowrap;
overflow: hidden;
}
Kind Regards