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