06/17/2014 at 9:04 am
#294044
Keymaster
@ brent
Sorry, but presently there is not a way to do this. The shortcode options you’re adding are for several of the premium templates, not Form. This feature is on my to do list. It has to wait to be implemented because I’m currently rewriting the the core taxonomy code in Connections to be far more flexible.
Until then the best way is to use CSS to hide it. It is not an elegant solution and actually can be quite tedious depending on how often you expect to be adding categories…
This CSS statement should hide all category choices:
#cn-form li.active-result {
display: none;
}
Now you need to selectively unhide the choices you want to be visible. This will unhide the “Professional Network” choice:
#cn-form li.active-result:nth-child(n+8):nth-child(-n+16) {
display: block;
}
Anytime you add/remove a category, you’ll have to tweak the 8 and 16. Hope that helps!
-
This reply was modified 12 years, 2 months ago by
Steven Zahm. Reason: Correct CSS to show hidden category choices
