Support

Account

Home Forums Front-end Issues Disable Text Tab in Post Editor for frontend form Reply To: Disable Text Tab in Post Editor for frontend form

  • Hi @buylov

    The easiest way would be using CSS to hide it. Something like this:

    div[data-name="_post_content"] .wp-editor-tabs { 
        display: none;
    }

    Hope this does the trick!