Support

Account

Home Forums Front-end Issues Entering data quickly in a spreadsheet-like view

Helping

Entering data quickly in a spreadsheet-like view

  • I’ve been really impressed with ACF after having done some early dev with it. It’s all working well.

    Looking to try to be as efficient as possible, I wonder, is it possible to edit the data in a table / spreadsheet style view, rather than going in to each page? That way I could get loads of data entered really quickly, all on one page.

  • Hi @powcom,

    Natively the answer is no. There’s no way to do that.
    However you could create your own plugin for this.

    Create a custom admin page. In it you do a wp_query for all posts (or any post type) which contains the data you want to be able to edit. Output them as a table list with the inputs you need (this could get tricky if you have many different field types but if it’s just inputs, editors etc. it would be fairly simple. Then on posting your custom form table just do the logic necessary to update each posts information.

    I think this would be a pretty great idea for a third party plugin. The biggest issue that I can think of is how to make it dynamic.. One would probably want to be able to set in some settings which field groups to do the wp_query on or maybe do it dynamically on the custom admin page before the wp_query even runs.

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

The topic ‘Entering data quickly in a spreadsheet-like view’ is closed to new replies.