No Select All/None buttons
-
OK, here’s the next question. The Select All/None buttons don’t show up for me in the taxonomy field type. I see them in the demo, but I just can’t seem to produce them in my plugin. What could be the reason? Everything else seems to be working fine with the taxonomy type.
public function load_advanced_options( $oAdminPage ) { $this->addSettingFields( 'advanced_fields', array( 'field_id' => 'taxonomy_box', 'title' => __( 'Taxonomy Checklist', 'admin-page-framework-tutorials' ), 'type' => 'taxonomy', 'height' => '200px', // (optional) 'show_post_count' => true, // (optional) whether to show the post count. Default: false. 'taxonomy_slugs' => array( 'category', 'post_tag' ), // 'select_none_button' => __( 'Uncheck All', 'test-domain' ), // 3.3.0+ to change the label, set the label here ) ); }
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘No Select All/None buttons’ is closed to new replies.