Support

Account

Home Forums General Issues How do you set default values on a set of posts in bulk?

Solving

How do you set default values on a set of posts in bulk?

  • I have hundreds of posts which exist already.
    I create a Checkbox ACF and assign default values.
    I specify that this checkbox with it’s default values will display on all posts marked as Category1.
    I bulk-edit my posts to Category1.

    However, the posts are not updated with the defaults as a result. (this is the problem in question.)

    If I go into each post-edit screen individually I can see that the Checkboxes are present and the default values are checked as desired. However, the posts have not been updated to reflect this UNTIL I click “UPDATE” in the individual post-edit screen.

    I read somewhere on the site: “Default values are loaded when creating a new post / page.” But these posts already exist. I’m trying to assign their ACF default values by selecting Category1.

    How do I get existing posts to update their defaults automatically when I set their category?

  • Hi @nc

    Thanks for the q,

    The default value is only loaded on the edit screen. It is not saved automatically when you import data.

    Sorry, but this is outside the scope of the ACF plugin.

    You will need to write some custom code to hook into each post imported and then update the postmeta manually

    Thanks
    Elliot

  • Thanks, Elliot. Yes, I would like to do that but how do I access the default values of the ACF checkbox? If I can capture that array, I can assign it to the postmeta on demand… right?

  • Hi NC,

    Since you’ve set the checkbox default value yourself when creating the ACF field you don’t really need access to the array..

    If the value is just from one checkbox it will be saved as a string (if I remember correctly) and you can just manually write that out as the info to be saved without accessing the checkbox actual values.. Since it’s the same value as for the default value when ACF loads it it will recognize it as the default being checked while in reality you put it in there manually 🙂

  • Oh Jonathan, there’s never only one. 🙁
    I’m just simplifying so that I can get this going dynamically for a larger scale intended use.

  • Nc, Ic (I see) .. hoho..

    Then I suppose it’s a bit more complicated.. so dynamic that you can’t even retrieve a specific field from the ACF interface?

    With get_field_object you should be able to retrieve the specific checkbox with it’s values if that’s what you need.

  • aha! get_field_object

    I think you’ve nailed it but I’m gonna try it out first and see how it goes. Thank you both so far!

  • Great to hear 🙂 Let us know

  • I’m close to a solution but unfortunately:

    $default_values = $my_get_field_object[‘default_value’]

    $default_values produces a string with no line breaks! I need the default values as an array so that I can use update_field($my_field_key, $default_values, $post->ID) to update the post.

    Suggestions?

  • So, it feels redundant to have to create a DEFAULT POST when there are already default values lying around. But That’s what I’ve done. I’ve created a Default Post (like a default template for this category, and I’ll have to make one for each unique ACF category that I create) which is updated with the default options so that I can copy them whenever the default fields aren’t automatically set. The logic works like this:

    If my post is set to Category1 &&
    If my post’s ACF checkboxes are not already set
    THEN update_field( $my_field_key, $copy_values_from_default_post, $default_post_id )

    That’s my solution for today. Seems like it should have been more straightforward. Please let me know if there is a better way.

  • You say the default values are produced as a string.. I believe they’re like this: default1, default2, default3 etc.
    If you need this as an array why not simply use php explode?

    
    $myarray = explode(', ', $default_values);
    

    If the string does not contain a space just remove that from the first parameter of the explode 🙂

  • I tried explode, there wasn’t a comma or anything separating it. No line feed, new line or anything. Just a flat string.

  • sounds wierd..

    My recollection of the field object with a checkbox was an array with each value. But I haven’t had a look at it in some time..

    I suppose you could copy the field from the ACF core and make your own addon where you put the values in an array instead so that you can use them as you please

  • And yea, I just retested it with your explode code to make sure and it no worky. I can’t imagine how this could be useful to anyone as is. And I don’t have time to poke around. I suppose this could be a bug report but Elliot says It’s out of scope so I guess it wouldn’t get looked at?

    Or maybe I’m just not understanding something about how the default values are properly accessed.

  • Well that’s not entirely true.. It is out of the scope of ACF to automatically add default values to posts depending on category.. However if there’s no apparent reason to why the field_objects checkbox values are in one long string you could create a fork on the ACF repo on github and fix it yourself and hope for it to be included in the next version 🙂

  • I won’t be forking anyone’s repo anytime soon I’m afraid. But we’re pretty close to a “force update” feature I suppose. Needs some parameters to it somehow but I could see it being a very useful feature.

  • Alright, so I’ve created a custom post type where defaults can be set and given a unique name. (eg. the post title = template name)

    I have 2 things to figure out now:

    1) How to copy all ACF data from a given post to another post. (I know how to do it by individual field, I’m just hoping there’s a way to grab all fields at once and copy them over)

    2) How to use ACF on a given Post to select from the available templates.

  • 3) Ideally, I would like a Reset Fields button (which clears all acf forms on the post) a Merge with Template button (which adds in any fields that aren’t already created) and a Copy from Template button (which resets all fields first then merges)

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

The topic ‘How do you set default values on a set of posts in bulk?’ is closed to new replies.