Tagged: ,

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1011525

    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.

    • This topic was modified 6 years, 1 month ago by Josh.
    #1011537

    Hey Josh,
    Do you mean this link button?
    2018-09-18_162253

    Best regards,
    Mike

    #1011538

    Yes, that’s it.

    #1011544

    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

    #1011547

    I’ve disabled all plugins, that hasn’t seemed to bring the link / hyperlink button back in the Text Area element.

    #1011549

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    #1011568

    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!

    #1011576

    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

    #1011583

    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();
      }
    }
    #1011615

    Hi,

    Great, thanks for sharing, much appreciated :-)

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.