Support

Account

Forum Replies Created

  • I’m facing the same problem. The layout of Gutenberg editor is not optimal when dealing with custom fields. Haven’t found a way to customize Gutenberg as I want.

    The solution I settled for in the meantime is to change the order of the metaboxes.

    Be aware though that this places the metaboxes BEFORE the title and also that your site may have more custom meta boxes than mine (Only using ACF and Yoast SEO). The metaboxes are collapsable which helps a bit…

    Here’s the css for this optional solution 🙂

    .edit-post-layout__content .edit-post-visual-editor {
        order: 2 !important;
    }
    
    .edit-post-layout__content .edit-post-layout__metaboxes {
        order: 1 !important;
    }
  • I came across the same problem today (noticed i had repeaters with 1000s of rows) and stumbled upon this thread.

    I created the following script to convert the data of a file field into a repeater. This worked when there was a file uploaded (field has data) and should be inserted into array of repeater on first position.

    https://gist.github.com/slackday/947569a2adf7300e26027a920a20ede0

    Use at your own risk! I’d advise to make database backup and test in local environment first.

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