Support Forum » User Profile

Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • in reply to: Yoast and Meta box clone-able groups #20844
    rubbergumballrubbergumball
    Participant

    Hi Long,
    Yes, I had added add_to_wpseo_analysis => 1 to the text and wysiswyg filed 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.  
    in reply to: Yoast and Meta box clone-able groups #20836
    rubbergumballrubbergumball
    Participant

    In my testing I've found that cloneable wysiswyg fields that are not consecutive in the editor flow will break text count for anything after that inserted non-wysiwyg field group.

    in reply to: Yoast and Meta box clone-able groups #20821
    rubbergumballrubbergumball
    Participant

    UPDATE: 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.

    in reply to: Yoast and Meta box clone-able groups #20820
    rubbergumballrubbergumball
    Participant

    Second 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.

Viewing 4 posts - 1 through 4 (of 4 total)