hi i want to ask,
on the login page in the caption header section, how do you remove the login text or change it?
only on the login page I want to change.
Thank You
You may Inspect HTML element and add your own CSS styles in order to remove/hide it.
You may change the phrase “LoginMsg” in the language file.
i am using css code like this but header in all form is hidden.content-header h1{
//content:‘goodbye’;
visibility: hidden;
}if I use the phrase “LoginMsg” it only changes the caption “Sign in to start your session”, but I only want to change the Login caption above the title
You may simply put this following code in Language_Load server event, after that, re-generate src/Language.php file again:$this->setPhrase(“LoginPage”, " ");
Thanks