A way to copy all of the data used on a page with multiple fields on it. It can mimic the local JSON functionality of field groups. So a user would be editing a page and they could click a button for the raw json representation of all the content on the page. then paste this into another page to copy all the content
Hi @hlenz
I think you can create a button or better a post object field, and then copying the data by using the update_field() function.
With the post object field, you can check if this field has the value or not when the acf/save_form action is executed. If it’s, then get the fields value from the selected post and copy it to the current post.
I hope this makes sense 🙂