gitextract_4vuue3u2/ ├── .gitignore ├── CONTRIBUTING.md ├── README.md ├── api/ │ ├── README.md │ └── cmb2-file-list-ordered.php ├── conditional-display/ │ ├── exclude-for-ids.php │ ├── hide-on-new-post-page.php │ ├── show-for-taxonomy-terms.php │ ├── show-if-matching-meta-value.php │ └── show-only-for-top-level-posts.php ├── custom-field-types/ │ ├── README.md │ ├── address-field-type/ │ │ ├── address-field-type.php │ │ └── class-cmb2-render-address-field.php │ ├── associate-wp-menu-field.php │ ├── autocomplete-field-type.php │ ├── button-field-type.php │ ├── dashicon-radio-field/ │ │ └── dashicon-radio-field.php │ ├── default-category-field.php │ ├── default-tags-field.php │ ├── form-field-field-type.php │ ├── multicheck_posttype-field_type.php │ ├── multicheck_title-field_type.php │ ├── post-list-field-type.php │ ├── select-multiple-field-type.php │ ├── star-rating-field-type/ │ │ ├── css/ │ │ │ └── star-rating-field-type.css │ │ └── star-rating-field-type.php │ ├── taxonomy-radio-with-image-field-type/ │ │ ├── DJ_Taxonomy_Radio_Hierarchical_With_Image.php │ │ ├── DJ_Taxonomy_Radio_With_Image_Display.php │ │ └── taxonomy-radio-with-image-field-type.php │ ├── textarea-with-checkbox.php │ └── year-range-field-type.php ├── filters-and-actions/ │ ├── README.md │ ├── cmb2-add-fields-dynamically.php │ ├── cmb2_all_or_nothing_types-filter.php │ ├── cmb2_before_form-and-cmb2_after_form-hooks.php │ ├── cmb2_init_$cmb_id-add-fields.php │ ├── cmb2_init_$cmb_id-modify-object-types.php │ ├── cmb2_init_$cmb_id-remove-field.php │ ├── cmb2_init_$cmb_id-replace-field.php │ ├── cmb2_init_before_hookup-add-fields.php │ ├── cmb2_init_before_hookup-remove-cmb2-metabox.php │ ├── cmb2_init_before_hookup-update-existing-fields.php │ ├── cmb2_override_{$field_id}_meta_value-filter.php │ ├── custom-css-for-specific-metabox.php │ ├── disable-styles-on-front-end-forms.php │ ├── localize-date-format.php │ ├── override-cmb2-data-source.php │ └── save-default-group-field-value-based-on-other-field.php ├── front-end/ │ ├── README.md │ ├── cmb2-front-end-editor.php │ ├── cmb2-front-end-submit.php │ ├── cmb2-front-end-wordpress-media-uploader.php │ ├── cmb2-metabox-shortcode.php │ └── output-file-list.php ├── helper-functions/ │ ├── README.md │ ├── helper-functions.php │ ├── modify-cmb2_metabox_form-format.php │ ├── modify-cmb2_metabox_form-output.php │ └── modify-cmb2_metabox_form-save-button-text.php ├── javascript/ │ ├── README.md │ ├── cmb2-auto-scroll-to-new-group.php │ ├── cmb2-js-validation-required.php │ ├── dynamically-change-group-field-title-from-subfield.php │ ├── limit-number-of-multiple-repeat-groups.php │ ├── limit-number-of-repeat-fields.php │ └── limit-number-of-repeat-groups.php ├── metaboxes/ │ └── README.md ├── misc/ │ ├── README.md │ ├── add-wrap-to-group-of-fields.php │ ├── adding-wordcount-to-cmb2-wysiwyg-field.php │ ├── cmb2-field-in-publish-box.php │ ├── helper-functions.php │ ├── outputting-cmb2-fields-in-featured-image-metabox.php │ ├── outputting-forms-outside-metaboxes.php │ ├── replace-wp-excerpt-with-cmb2-field.php │ └── replace-wp-title-content-thumbnail-with-cmb2-fields.php ├── modified-field-types/ │ ├── README.md │ ├── modify-button-text-for-file-type.php │ └── readonly-field-type.php ├── options-and-settings-pages/ │ ├── README.md │ ├── add-cmb2-settings-to-other-settings-pages.php │ ├── custom-display-callback.php │ ├── genesis-cpt-archive-metabox.php │ ├── genesis-settings-metabox.php │ ├── network-options-cmb.php │ ├── non-cmb2-options-page.php │ ├── options-pages-with-submenus.php │ ├── options-pages-with-tabs-and-submenus.php │ ├── submenu-options-pages.php │ └── theme-options-cmb.php ├── user-meta-and-settings/ │ └── README.md └── widgets/ └── widget-example.php