Skip to main content


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?

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


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*/

 


Reply