Support

Account

Home Forums General Issues Duplicate MetaKeys for Boolean in ACF_LITE Reply To: Duplicate MetaKeys for Boolean in ACF_LITE

  • in narrowing it down, i can recreate using just this as my acf.php:

    <?php
    
    if(function_exists("register_field_group"))
    {
            register_field_group(array (
                    'id' => 'acf_experience-post-fields',
                    'title' => 'Experience Post Fields',
                    'fields' => array (
                            array (
                                    'key' => 'field_52bc856a5d6b9',
                                    'label' => 'Is Auction',
                                    'name' => 'is_auction',
                                    'type' => 'true_false',
                                    'instructions' => '',
                                    'message' => '',
                                    'default_value' => 0,
                            )),
                    'location' => array (
                            array (
                                    array (
                                            'param' => 'post_type',
                                            'operator' => '==',
                                            'value' => 'experience',
                                            'order_no' => 0,
                                            'group_no' => 0,
                                    ),
                            ),
                    ),
                    'options' => array (
                            'position' => 'normal',
                            'layout' => 'no_box',
                            'hide_on_screen' => array (
                            ),
                    ),
                    'menu_order' => 0,
            ));
    }