Support

Account

Home Forums Backend Issues (wp-admin) Custom fields on woocommerce product variations Reply To: Custom fields on woocommerce product variations

  • Hello @J_M you need to add this to your functions.php to be able to see the option on the dropdown.

    //add ACF rule
    add_filter('acf/location/rule_values/post_type', 'acf_location_rule_values_Post');
    function acf_location_rule_values_Post( $choices ) {
    	$choices['product_variation'] = 'Product Variation';
        //print_r($choices);
        return $choices;
    }