Greetings. In general, I decided to add tinymce visual editor to my website, but several problems arose:

  1. Pop-up windows for inserting links, pictures, etc. site style is set enter image description here

actually everything goes.

  1. Data from the form is transmitted from the second attempt, the form on the Ajax.
  2. Not fully translated into Russian
  3. How to remove this block enter image description here

I initialize it like this:

<script> tinymce.init({ selector: 'textarea', theme: 'modern', language: 'ru_RU', plugins: [ 'advlist autolink lists link image charmap print preview hr anchor pagebreak', 'searchreplace wordcount visualblocks visualchars code fullscreen', 'insertdatetime media nonbreaking save table contextmenu directionality', 'emoticons template paste textcolor colorpicker textpattern imagetools' ], toolbar1: 'insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image', toolbar2: 'print preview media | forecolor backcolor emoticons', image_advtab: true }); </script> 

How can I get rid of all these problems?

  • 4 point overcame this menubar: false - vitagame
  • Visual problem in the style of input: not ([type = "submit"]), textarea {width: 100%; display: inline-block; background: #fff; height: 40px; padding: 10px; color: # 3e454c; border: 1px solid # e8e8e8; outline: none; resize: none; -webkit-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; box-shadow: none; -webkit-appearance: none; appearance: none; -webkit-transition: border-color .35s ease; transition: border-color .35s ease; } input: not ([type = "submit"]): focus, textarea: focus {border-color: # ff680d; } - vitagame

0