• Resolved marrvel

    (@marrvel)


    I am letting users post content from front end but since the installation of the plugin, they now see the plugin forms in the Text Editor and can add login and registration forms to their posts. How can I disable the appearance of the plugin forms in the Text Editor?

    Thank you!

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

    (@beeky2)

    Hi Marrvel,

    thanks for using my plugin and thanks to pointing me on that issue, actually at the moment the plugin doesn’t check if the text editor is on backend or frontend, I will add that feature on the next updates.

    If you are managing the front end text editor I would suggest to add them this way:

    $settings = array(
                       'teeny' => true,
                       'tinymce' => array(
                                        // Items for the Visual Tab
                                        'toolbar1'=> 'formatselect,bold,italic,underline,bullist,numlist,alignleft,aligncenter,alignright,link,unlink,forecolor,undo,redo,', // here you can add the items you need to show
                                    ),
                       'media_buttons' => true,
                       'editor_height' => 280,
                       'tabindex' => 1
                       );
    wp_editor($your_variable, 'your_variable', $settings);

    Let me know if it works.

    • This reply was modified 4 years, 10 months ago by beeky2.
    • This reply was modified 4 years, 10 months ago by beeky2.
    Plugin Author beeky2

    (@beeky2)

    This issue has been fixed with the version 1.6.0.

    Thanks for reporting.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Why does it appear in Text Editor’ is closed to new replies.