Forum Replies Created
-
AuthorPosts
-
rubbergumball
ParticipantHi Long,
Yes, I had addedadd_to_wpseo_analysis => 1to thetextandwysiswygfiled groups but the insertion of other field types between them somehow stops the text count for Yoast. Not using AIO, but rather have added these fields in a custom plugin.array( 'id' => $prefix . 'sections', 'type' => 'group', 'clone' => true, 'sort_clone' => true, 'collapsible' => true, 'fields' => array( array( 'id' => $prefix . 'section_type', 'name' => esc_html__( 'Section Type', 'site' ), 'type' => 'select', 'options' => array( 'wysiwyg' => 'WYSIWYG Editor', 'image_grid' => 'Image Grid', 'quote' => 'Quote Section', 'form_id' => 'Gravity Forms ID' ) ), array( 'id' => $prefix . 'wysiwyg_section', 'name' => esc_html__( 'WYSIWYG Editor', 'site' ), 'type' => 'wysiwyg', 'visible' => array( $prefix . 'section_type', 'wysiwyg' ), 'add_to_wpseo_analysis' => true, ), .... ETC.rubbergumball
ParticipantIn my testing I've found that cloneable
wysiswygfields that are not consecutive in the editor flow will break text count for anything after that inserted non-wysiwygfield group.rubbergumball
ParticipantUPDATE: Not related to Yoast. I'll start a new thread.
It appears that the hidden std response is getting added to every post of that same post type- which for me defeats the purpose of grouping content via a std value, unique to that meta box. Would prefer that this happens only on pages with a specific template and not all of a post type, ands should happen behind the scenes instead of requiring an editor to chose a taxonomy term or enter a value into a text field.
rubbergumball
ParticipantSecond Yoast an Meta Box issue - it appears that the std value is 'leaking to other posts besides the specific template the fields are assigned to.
-
AuthorPosts