The MAKE Wordpress plugins doesn't import custom fields

I’m trying to post some products to my WP website which has a lot of ACF fields (custom fields). I installed the Make plugin, and I can create a post with any details (title, content, category etc)…excepet custom fields. I have checked the custom field boxes from the Make plugin, but they still don’t appear in the module.

Any advice?

Thanks!

You might need to use the generic “Make an API call” with POST method with additional custom fields details mentioned here:

e.g.:

{
    "acf": {
        "field_slug": "value",
        "field_slug2": "value",
        "field_slug3": "value"
    },
}
2 Likes

Thank you for the tip. It’s really weird the official plugin cannot do that, since it has that option built-in.