Solved

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

  • 18 January 2023
  • 2 replies
  • 23 views

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.

 

 

icon

Best answer by ravi.kurma 19 January 2023, 15:25

View original

2 replies

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;
}

 

 

Fantastic Ravi, thank you!

Reply