Forum Replies Created
-
AuthorPosts
-
Mr Jon Marks
ParticipantJust bumping to say that this is still a bug. On a clean wordpress site if a user starts on the text view of a WYSIWYG clicking the 'Visual' tab does not actually move one over to visual. One needs to click twice. This causes all sorts of issue like content not being saved, or incorrect preview.
Mr Jon Marks
ParticipantHi Long,
Any update on this? The WYSIWYG field is still breaks WP
Mr Jon Marks
ParticipantHi,
This is turning in to a major problem for us and our clients.
Metabox code breaks the transition from 'Text' to 'Visual'. This has been the case for months.
Can we please get a reply or an indication that this is being looked at?
Mr Jon Marks
ParticipantHi,
This is still a issue with the latest metabox on the latest wordpress that wysiwyg does not load to the visual tab correctly.
Mr Jon Marks
ParticipantHi Long,
Has there been any progress on this? This is still a live issue.
Mr Jon Marks
ParticipantNot the normal post content WYSIWYG work fine on classic editor, but if you add a meta box WYSIWYG to the post type the normal one then breaks.
I am guessing you have a hook that requires some JS that is only in the Gutenberg view. There are no console errors.
Mr Jon Marks
ParticipantKses escapes comments that have markup in them but not comments without markup. I made a new filter on this for now on pre_kses hook.
Thanks
Mr Jon Marks
ParticipantUpon investigation this maybe an issue with wp_pre_kses_less_than.
An option to not call kses would still be nice though
Mr Jon Marks
ParticipantComments are being escaped so <!-- goes to & lt;!-- when it should not
Mr Jon Marks
ParticipantA normal wysiwys shows html tags. A wysiwyg in a group does not.
Mr Jon Marks
ParticipantSomething like
foreach ( $child_fields as $child_field ) { if ( $child_field['type'] === 'wysiwyg') { $new[$child_field['id']] = RWMB_Wysiwyg_Field::value( $new[$child_field['id']], $old, $post_id, $child_field ); } elseif ( in_array( $child_field['type'], array( 'file', 'image' ) ) ) { $value = RWMB_File_Field::value( '', '', $post_id, $child_field ); $new[ $child_field['id'] ] = $value; } }on line 252 of class-rwmb-group-field.php
Mr Jon Marks
ParticipantI am the network admin on all sites, by the way
-
AuthorPosts