Skip to main content
Solved

Disable or Hide Terms & Conditions

  • June 28, 2023
  • 3 replies
  • 83 views

  • Contributor ⭐️⭐️⭐️

Hello - A quick question related to ability to Disable or Hide Terms & Conditions 

Context: We will be using SSO and would like for users to set ‘username’ upon first login. On this registration page we would like to disable the terms and conditions as our T & C will be handled on a seperate portal  

Question:

  1. Is it possible to disable the terms and conditions seen on the SSO registration page https://my-community.insided.com/ssoproxy/setUsernameForm
  2. If its not possible can you give me some pointers on hiding it using Phrases and custom CSS? 

Best answer by leo-inspired

Hey @ruc! You can hide that box with the following Custom CSS:

.termsLabel

display: none;
}

The only problem is that this checkbox is mandatory so if it’s hidden, I believe your users won’t be able to sign up. Could you contact your Onboarding Manager Zach about this one? He’ll be able to give you more guidance on this topic 

3 replies

DannyPancratz
Forum|alt.badge.img+9
  • VIP ⭐️⭐️⭐️⭐️⭐️
  • June 28, 2023

You should definitely be able to do that with CSS. That’d be my recommendation, as you could hide it on just that page, as opposed to everywhere. 

I’m not a CSS pro, so someone else will need to chime in; or I’ve found support to be super helpful for these types of things. 


leo-inspired
  • Gainsight Employee ⭐️
  • Answer
  • June 28, 2023

Hey @ruc! You can hide that box with the following Custom CSS:

.termsLabel

display: none;
}

The only problem is that this checkbox is mandatory so if it’s hidden, I believe your users won’t be able to sign up. Could you contact your Onboarding Manager Zach about this one? He’ll be able to give you more guidance on this topic 


  • Author
  • Contributor ⭐️⭐️⭐️
  • July 3, 2023

Thanks @DannyPancratz  and @leo-inspired