Skip Navigation

[Resolved] Advanced MCE tools does not work with WYSIWYG in Repeatable group

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

This topic contains 3 replies, has 2 voices.

Last updated by Minesh 1 year, 10 months ago.

Assisted by: Minesh.

Author
Posts
#2649423
WYSIWYG inside Repeatable Group missing Advanced MCE.png
WYSIWYG with Advance MCE Working.png

I am trying to: Add Advanced MCE Editor tools to toolset WYSIWYG inside a repeatable group. It seemed to work on a previous release of toolset, but it's not working anymore.

Please see the attached screenshots.
I have seen similar issues being raised in the past and a few did say the issue was resolved. However, it doesn't seem to work for me.

#2649747

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

I found that you are using the following plugin "Advanced Editor Tools".

When I disable that plugin - I see the identical Toolbar button displayed with both WYSIWYG field added on your post edit page that is displayed with "Hero bottom content" and "Post Blurb" fields.

#2649875

Hi Minesh,

Thanks for your response.

I am looking to add the features of "Advanced Editor Tools" to the WYSIWYG's inside repeatable group.

#2649993

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

We do not have any official integration with "Advanced Editor Tools" plugin. Even we have known issue that if you try to add anything using the hook - it does work with the WYSIWYG custom field added to custom field group but not working for the WYSIWYG fields added inside the repeating field group.

For example - the we tried following hook, it does work with the WYSIWYG custom field added to custom field group but not working for the WYSIWYG fields added inside the repeating field group.

function remove_h1_from_heading($args)
{
    // Just omit h1 from the list
    $args['block_formats'] = 'Paragraph=p;Heading 2=h2;Heading 3=h3; Heading 4=h4;';
    return $args;
}
add_filter('tiny_mce_before_init', 'remove_h1_from_heading');

There is no ETA when the fix this issue is officially made available. I suggest you should keep using the normal toolbar or check for other options.