Skip to main content
Solved

Is it possible to disable the idea type for specific community categories?

  • January 18, 2023
  • 2 replies
  • 34 views

logicalhare

I’d like to disable the Ideas option for my community categories without disabling the Idea module entirely. Is this possible? I’d like to limit the types of options most community categories provide users to just questions or conversations. We don’t allow users to submit ideas directly through Insided so this is why we want to disable this option, but we do have an integration that credits users with ideas from an external system.

 

 

Best answer by ravi.kurma

Hi @logicalhare!

You should be able to hide it with Custom CSS. Adding this will hide the topic option for “idea”. You got to make sure to hide it other places as well like inside the ideas page there will be another button to create ideas.

.qa-radio-button-topic-type-idea
{
display:none;
}

 

 

2 replies

ravi.kurma
  • Helper ⭐️⭐️⭐️
  • Answer
  • January 19, 2023

Hi @logicalhare!

You should be able to hide it with Custom CSS. Adding this will hide the topic option for “idea”. You got to make sure to hide it other places as well like inside the ideas page there will be another button to create ideas.

.qa-radio-button-topic-type-idea
{
display:none;
}

 

 


logicalhare
  • Author
  • Contributor ⭐️⭐️⭐️⭐️
  • January 19, 2023

Fantastic Ravi, thank you!