Groups of wysiwygs doesn't seem to work
-
When I add another Group of fields where one of the fields in the group is a wysiwyg, the additional groups don’t render the editor properly. When using a textarea it works fine.
Here is a screen shot of my UI after clicking the ‘Add Another Section’ button
https://cl.ly/image/3i0i3z1s1w3ZHere is the code for the metabox:
$meta_boxes[] = array( 'id' => CMB_PREFIX.'cg_sections', 'title' => 'Sections', 'object_types' => array('cityguide'), 'context' => 'normal', 'priority' => 'high', 'show_names' => true, 'fields' => array( array( 'id' => 'section_group', 'type' => 'group', 'options' => array( 'group_title' => 'Section {#}', 'add_button' => 'Add Another Section', 'remove_button' => 'Remove Section', 'sortable' => true, ), 'fields' => array( array( 'id' => 'title', 'name' => 'Section Title', 'type' => 'text', ), array( 'id' => 'content', 'name' => 'Content', 'type' => 'wysiwyg', ) ) ), ) );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Groups of wysiwygs doesn't seem to work’ is closed to new replies.