Hello,
I would like to know how I can remove the checkbox that is located on the Invitation Redemption page on a dynamics portal
picture for reference
*This post is locked for comments
I have the same question (0)

Hello,
I would like to know how I can remove the checkbox that is located on the Invitation Redemption page on a dynamics portal
picture for reference
*This post is locked for comments
I have the same question (0)Hi,
Answer should be in the following post by Arpit Shrivastava: community.dynamics.com/.../268556
Create a new Content Snippet - Account/RedeemInvitation/PageCopy and [paste below code:
<script>
$(window).load(function() {
$('.checkbox').hide();
});
</script>