• The user_can_richedit filter decides whether the Visual/Text editors via TinyMCE can be used in pages. However, if this filter is false, the snippets no longer work.

    I had to write a little check to exclude the snippets:

    if( stripos( $_GET[‘page’], ‘snippet’ ) !== false ) {
    return true;
    }

    Can this be fixed?

Viewing 1 replies (of 1 total)
  • Plugin Author Shea Bunge

    (@bungeshea)

    I suppose we could add a manual override to this filter on the edit snippets menu, but I suppose the question there is whether this would be the expected behaviour for the majority of users.

Viewing 1 replies (of 1 total)
  • The topic ‘‘user_can_richedit’ Breaks Snippets’ is closed to new replies.