Skip to content

Instantly share code, notes, and snippets.

@johnolek
Last active September 5, 2016 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnolek/8657ca552fd931b31ae4a0bbb517eb9f to your computer and use it in GitHub Desktop.
Save johnolek/8657ca552fd931b31ae4a0bbb517eb9f to your computer and use it in GitHub Desktop.
Remove Visual Editor from Gravity Forms Notifications Page
<?php
function remove_gf_notification_visual_editor($settings, $editor_id)
{
if ($editor_id === 'gform_notification_message') {
$settings['tinymce'] = false;
}
return $settings;
}
add_filter('wp_editor_settings', 'remove_gf_notification_visual_editor', 10, 2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment