Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to create post with ACF field values #338

Open
shanmuganathan-balaraman opened this issue Oct 10, 2017 · 10 comments
Open

Unable to create post with ACF field values #338

shanmuganathan-balaraman opened this issue Oct 10, 2017 · 10 comments

Comments

@shanmuganathan-balaraman
Copy link

shanmuganathan-balaraman commented Oct 10, 2017

Hi,
Thanks for this wonderful API,

I am trying to create post with ACF field values, but API creates the post with title and content only and skips the ACF field values. Event I tried to update the ACF field value it throws following error

{ 
code: 'cant_update_item',
  message: 'Cannot update item',
  data: { status: 500 }
 }

I referred the #176 as well

Find the code snippet below
screen shot 2017-10-10 at 9 09 24 am

Someone help to sort out this. Sample code will be more helpful.
Thanks in advance.

@gallaouim
Copy link

gallaouim commented Nov 15, 2017

im using this wonderful api to update my products too ,
u can update your acf fields this way ,
after registering your endpoint for example

wp.productsAPI = wp.registerRoute("wp/v2", "/products/");

this code snippet will create a new post that support acf fields

wp
  .productsAPI()
  .create({
    title: "Post number",
    fields: {
      product_name: "product name",
      product_description: "product description",
       categories: [
        { category_name: "category1" },
        { category_name: "category2" }
      ]
    },
    status: "publish"
  })

elements under fields are the acf fields , and categories is a repeater field :)

@donnierisk
Copy link

I had exactly the same issue, thank you @gallaouim this worked for me!!

@fkiller
Copy link

fkiller commented Feb 19, 2018

@gallaouim Does it also apply to regular post type created by CPT UI?

@gallaouim
Copy link

@fkiller im sorry for the late answer but yes it apply to regular post type created by CPT UI

@peter-mumford
Copy link

@gallaouim, @donnierisk I can't get your code to post data to acf fields when updating a post. Are you guys using the ACF to REST API plugin to register the routes for the fields?

@donnierisk
Copy link

Hi @peter-mumford Yes I did use that. I don't have the code anymore to check it exactly unfortunately

@DanielRSnell
Copy link

When you make an update / create request with WP API you use the word fields instead of acf

@kmaida
Copy link

kmaida commented Jun 28, 2020

I've implemented this solution as written above by @gallaouim, but it didn't work (custom post is created successfully, but no ACF data is available in it after creation). I have a custom route registered and have used the fields property with an object containing my custom fields to create the custom post via the REST API.

Has anyone seen any changes to this recently that might have affected this solution? Is this approach still working for others?

@neptunus
Copy link

I've implemented this solution as written above by @gallaouim, but it didn't work (custom post is created successfully, but no ACF data is available in it after creation). I have a custom route registered and have used the fields property with an object containing my custom fields to create the custom post via the REST API.

Has anyone seen any changes to this recently that might have affected this solution? Is this approach still working for others?

Exactly the same problem here. Did you ever figure this out?

@bsartain
Copy link

bsartain commented Jul 13, 2022

I'm having this same problem as well. I created a new custom Post Type called "signup" and directed the acf fields to that. I registered the route using:

wp.signups = wp.registerRoute("wp/v2", "/signups/");

Then used the 'fields' key but to no avail.

wp .signups() .create({ title: "Chuck Norris", content: "I am cookin up some good food", categories: [188], fields: { name_provider: name, meal_provider: meal, date_provider: date, }, status: "publish", })

I also tried the 'acf' key and that didn't work either

wp .signups() .create({ title: "Chuck Norris", content: "I am cookin up some good food", categories: [188], acf: { name_provider: name, meal_provider: meal, date_provider: date, }, status: "publish", })

The acf fields are not updating.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

9 participants