The Text Area (TinyMCE) link button has been missing for some time in Enfold. Have other people been having this issue? I’m using the latest version of WP 4.9.8 and latest Enfold 4.4.1 without any other plugins activated.
Yes, that’s it.
Hi,
This is first we have heard this issue. Have you tried disabling all active plugins so we can look into this issue further?
Best regards,
Jordan Shannon
I’ve disabled all plugins, that hasn’t seemed to bring the link / hyperlink button back in the Text Area element.
Hi,
Can you please include a admin login in the private content area so we can take a closer look.
Best regards,
Mike
I found my issue. While all of the regular plugins were turned off there was a must use plugin that was interfering with it. Sorry about wasting your time but appreciate the prompt replies! You guys are awesome!
Hi,
Glad you were able to sort it out, do you mind sharing the name of the must use plugin so we can keep an eye out for it?
Best regards,
Mike
It was a custom file of various code. The piece that caused the problem was this filter tiny_mce_plugins missing its function which I included.
add_filter( 'tiny_mce_plugins', 'disable_emojicons_tinymce' );
function disable_emojicons_tinymce( $plugins ) {
if ( is_array( $plugins ) ) {
return array_diff( $plugins, array( 'wpemoji' ) );
} else {
return array();
}
}