Support

Account

Forum Replies Created

  • So, at the end of all i followed a bit of all the advises i found online.

    First, I changed the value of my fields to make sure in database is like YYYYMMMDD. The problem i had was, that the field was filled up through API and ACF could not format the date at the good format in database. I have to changed the format of the date that i send through the API. Normal people using the backend to fill up the field date would never have this problem.

    Second, i add a line in my code

    ‘date_disponible_clause’ => array(
    ‘key’ => ‘date_available_from’,
    ‘value’ => $date_from_format_search,
    ‘compare’ => ‘<=’,
    ‘type’ => ‘DATE’ // This line
    )
    Now it’s working very well. Thanks.

  • I thought will be easier to change the format of the date in database in YYYYMMDD.
    But i don’t know how to do this with ACF ?

  • @paulsvang

    I found the solution here : https://stackoverflow.com/questions/56553090/populate-acf-fields-using-wordpress-rest-api-js

    Just replace acf by fields like this :

    "fields": 
        {      
            "field_1" : "Titre",  
            "field_2" : 100
        }
  • Hi @paulsvang,
    I have exactly the same problem as you.
    Did you found a way ?

    I have an other idea, but sounds heavy :
    1- Create a post with the standard API
    2- Get the ID after the creation
    3- Use the extension ACF TO REST API and do an update of the initial post just to fill up ACF fields.

    We can exchange about this together if you want (as we are in the same boat apparently ^^)

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