Viewing 1 replies (of 1 total)
  • Plugin Author Dave from Gravity Wiz

    (@spivurno)

    This will be possible in the version 3.1 which will be available in a few days. You will need to use a filter to change the desired “parent” category.

    add_filter( 'gfcpt_taxonomy_args_1110_3', function( $args ) {
    	$args['parent'] = 420;
    	return $args;
    } );

    1. “1110” should be replaced with your form ID.
    2. “3” should be replaced with your field ID.
    3. “420” should be replaced with the term ID of your parent category.

Viewing 1 replies (of 1 total)
  • The topic ‘Limit CPT category selection to a single parent category?’ is closed to new replies.