Hide idea form from users

If you don't want users to be able to submit ideas on your board you can easily hide the "idea form" using the Custom CSS feature.

In your "Project Settings" under "Custom CSS" you can add the following pieces of code to hide the "idea form":

/* Hide the form from non-admins */
body:not(.feedbear-admin) #board-intro {
display:none !important;
}
/* Hide the form from users that are not logged-in */
body:not(.logged-in) #board-intro {
display:none !important;
}

Here is a screenshot for reference:

Still need help? Contact Us Contact Us