Hi All,
I have to Hide "I have an Existing Account" on Redeem invitation Page on CRM Portal.
I am not finding any page for this.
Please help
Thanks,
*This post is locked for comments
Hi All,
I have to Hide "I have an Existing Account" on Redeem invitation Page on CRM Portal.
I am not finding any page for this.
Please help
Thanks,
*This post is locked for comments
First, you need to create a new Content Snippet - Account/RedeemInvitation/PageCopy
Then paste the below code as Html content:
<style>
.checkbox {
display: none;
}
</style>
In my opinion, this works better than using javascript. By setting a style, the control is hidden from the moment it is added to the page.
I found that when I used javascript the control appeared for a moment before it was hidden.
Thanks, very useful
I have tried this solution but it does not seem to work for me.
This solution does work perfectly for me now.
Hi Rohini,
Create a new Content Snippet - Account/RedeemInvitation/PageCopy and [paste below code:
<script>
$(window).load(function() {
$('.checkbox').hide();
});
</script>
Cheers
Arpit
https://arpitmscrmhunt.blogspot.in
André Arnaud de Cal...
292,494
Super User 2025 Season 1
Martin Dráb
231,305
Most Valuable Professional
nmaenpaa
101,156