Hi,
Hopefully someone can help me with this one. I'm trying to change the Page title name of the Dynamics Portals SignUp page. I created the following Content Snippets:
Account/SignIn/SignInLocalButtonText --> Text --> Value "Inloggen"
This doesn't change anything...
Account/SignIn/PageCopy with the following code:
<script>
changeHeader()
function changeHeader()
{
$('a:contains("Aanmelden")').text(' Inloggen ');
$('a:contains("Registreren")').text(' Aanmelden ');
}
</script>
This however does something strange:
microsoftcrmportals.com/SignIn --> the page title is "Inloggen". So this correct. Yeah!
But in the home page navigation remains "Aanmelden" (Dutch for Register). So on the home page the page title for SignIn is "Aanmelden", after the user clicks on this page link --> the page title changed to "Inloggen".
So somewhere there is still the default name.
Can someone guide me to the right content snippet/ page template?