Support

Account

Home Forums Gutenberg Auto-Scroll Bug in Gutenberg (WP 6.7+) When Creating a New Paragraph Reply To: Auto-Scroll Bug in Gutenberg (WP 6.7+) When Creating a New Paragraph

  • As it turned out, the fix for the problem is quite simple

    add_action('acf/input/admin_footer', function () {
      ?>
        <script>
          jQuery(document).off('tinymce-editor-init.keep-scroll-position');
        </script>
      <?php
    });