Announcements
Hi
I have been looking everywhere for an answer on this.
I know that the above mentioned page is very hard to edit, and that there are a lot of limits.
I would like to know if it is possible to change the "tab" names and the button label.
I do not need anything fancy, I just need to rename the lables.
Does anybody have the solution?
Cheers
Jacob
Hi Matt
I cannot seem to get it to work.
I am sorry but scripting in CRM is quite new to me, so please bare with me.
I have a "tab" called "Tilmeld" and the button name is also "Tilmeld" - I would like to change that and have tried to use you script as follows:
<script>
$(document).ready(function() {
$("#content").find("a[aria-label='Tilmeld']").html("Sign Up");
$("button[title='Tilmeld']").html("Sign Up");
});
</script>
I have made a snippet looking like this.
Name: Rename
Websted: kundeselvbetjening
Visningsnavn: Account/SignIn/PageCopy
Type: HTML
Sprog: Danish - Denmark
Can you tell me what I have done wrong?
Thank you very much in advance
/Jacob
Thank you very much Matt. I will try that - I must brush up on my scripting abilities.
Jacob
Yes can do that with Jquery, We have done this, you can use content snippet and can have jquery to do modifications.
Is this what you are looking for?
arpitmscrmhunt.blogspot.com/.../customise-registration-page-in-crm.html
HTH.
Thank you.
Hi Jacob,
As you said, the Account page(s) are difficult to modify, however, there are ways around this.
1. Create a Content Snippet inside CRM for the page you want to modify. They are most likely "Account/SignIn/PageCopy", "Account/Register/PageCopy", "Account/RedeemInvitation/PageCopy". Make sure you set them as HTML instead of Text.
2. Edit the source of these snippets and write a script to modify the tabs, such as the snippet below:
<script> $(document).ready(function() { $("#content").find("a[aria-label='Register']").html("Sign Up"); $("#content").find("a[aria-label='Sign In']").html("Login"); $("#content").find("a[aria-label='Redeem Invitation']").html("Redeem"); $("button[title='Sign In']").html("Login"); $("a[title='Forgot Your Password?']").html("I FORGOT IT!"); }); </script>
Using those examples you should be able to write scripts on the snippets to modify the tabs and buttons as needed.
I'll follow the post in case there are any questions!
Matt Bayes
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 290,712 Super User 2024 Season 2
Martin Dráb 228,983 Most Valuable Professional
nmaenpaa 101,150