• Resolved rehatiere007

    (@rehatiere007)


    Hi Mansur

    is this plugin still being maintained?
    I would like to use it on my website, but I’m concerned that users can insert links and code. Would it be possible to add a setting that allows only text to be entered?

    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author mansurahamed

    (@mansurahamed)

    Hi,

    There is filter to do that. Add following code in your child theme’s functions.php file which should do it

    add_filter('private_user_notes_editor_settings', 'simplify_user_notes_editor');
    function simplify_user_notes_editor($settings) { // Set editor to plain text mode $settings['tinymce'] = false;
    $settings['quicktags'] = false;
    $settings['media_buttons'] = false;
    $settings['teeny'] = true;
    return $settings;
    }
    Thread Starter rehatiere007

    (@rehatiere007)

    Hi @mansurahamed,

    thank you 🙂 .

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Restrict to text only input’ is closed to new replies.