Hi @johann-haker,
Sorry the hover text “Go to Top” on Go to Top button and “Search” text on Search field cannot be changed or removed. Actually it’s the attribute used for the elements. To remove or change the text you need to hire a developer to customize the code for you.
And yes for the “search” placeholder text we can do a tricky thing. Like you can change the color to a transparent so that it makes a feel of hiding the placeholder text. So to make the text color to transparent go to ‘Appearance > Customize > Additional CSS’ and paste the below custom CSS Code.
input.s::-webkit-input-placeholder {
color: transparent;
}
input.s::-moz-placeholder {
color: transparent;
}
input.s:-ms-input-placeholder {
color: transparent;
}
input.s:-moz-placeholder {
color: transparent;
}
Thanks