Forum Replies Created
-
AuthorPosts
-
December 23, 2016 at 5:31 PM in reply to: First WYSIWYG in group not switching between Visual and Text tabs. #4710November 24, 2016 at 8:35 PM in reply to: The WYSIWYG has white color in the content and missing the toolbar when repeating #4550
Namennaj
Participant@rilwis Just to confirm, my WYSIWYG text is white and the toolbar is missing. See the code above. I am using the Metabox Updater plugin to keep my plug-ins up to date.
November 24, 2016 at 8:33 PM in reply to: The WYSIWYG has white color in the content and missing the toolbar when repeating #4549Namennaj
ParticipantI have the same issue with v1.1.6. Here is my code:
$meta_boxes[] = array( 'title' => __( 'Legal Area Sections', 'textdomain' ), 'post_types' => 'page', 'include' => array( 'relation' => 'OR', 'template' => array( 'page-legal.php' ), ), 'fields' => array( array( 'name' => 'Section', // Optional 'id' => 'legal_section', 'type' => 'group', 'clone' => true, // List of sub-fields 'fields' => array( array( 'id' => 'title', 'name' => __( 'Section Title', 'textdomain' ), 'type' => 'text', ), array( 'id' => 'content', 'name' => __( 'Section Content', 'textdomain' ), 'type' => 'wysiwyg', ), // Other sub-fields here ), ), ), );Namennaj
ParticipantJust to add some more information. I just tried it with posts and I can have multiple post select fields. Just not Taxonomy select fields.
May 26, 2016 at 3:14 PM in reply to: Group and file_upload (AND clone) : only 1st file_upload is considered #3180May 25, 2016 at 5:59 PM in reply to: Group and file_upload (AND clone) : only 1st file_upload is considered #3168Namennaj
ParticipantJust an extra note. This is how I fixed it:
I deleted my existing extensions. Downloaded them again from the website and reinstalled them. This seems to have fixed the problem.
Any change we can get an auto-update for extensions if you update the main plug-in?
May 25, 2016 at 5:53 PM in reply to: Group and file_upload (AND clone) : only 1st file_upload is considered #3167Namennaj
ParticipantThis is happening to me too. Just a note, I updated the main meta box plugin today. It seems to have broken my groups plugin.
-
AuthorPosts