Skip to main content
Solved

How can you remove idea as an option in the community?

  • August 28, 2024
  • 2 replies
  • 38 views

  • Contributor ⭐️⭐️⭐️


Typically members have the option to select three topics (question, conversation and idea).

If we have a separate process for product ideas, how can I remove the ability to submit a topic as an idea?

Best answer by revote

Ask Support to hide that option. They have done it for us in our community.

2 replies

revote
Forum|alt.badge.img+2
  • VIP ⭐️⭐️⭐️⭐️⭐️
  • Answer
  • August 28, 2024

Ask Support to hide that option. They have done it for us in our community.


DannyPancratz
Forum|alt.badge.img+9
  • VIP ⭐️⭐️⭐️⭐️⭐️
  • August 28, 2024

Here is the custom CSS I have in my community to for that exact use case:

/*start-- HIDE Idea option */
.qa-radio-button-topic-type-idea {
display:none;
}
/*end-- hide idea option */

/*hide-- Idea option from Create Post tooltip*/
.qa-topic-type .tooltip__content p:nth-of-type(3),
.qa-topic-type .tooltip__content label:nth-of-type(3){
display: none;
}
/*end-- hide*/