Gravity Forms + Custom Post Type (enable all post types)
<?php add_filter( 'gfcpt_post_type_args', 'my_gf_post_type_args' ); function my_gf_post_type_args( $args ) { $args['public'] = false; return $args; }