acf-to-rest-api
                                
                                
                                
                                    acf-to-rest-api copied to clipboard
                            
                            
                            
                        Exposes Advanced Custom Fields Endpoints in the WordPress REST API
As the title indicates, v2 is protected, v3 is not. When I access; `/acf/v2/room/123` I get denied if I don't Authenticate. But when I access; `/acf/v3/room/123` I get a full...
Even though ACF Blocks is still in beta, it would be great if this plugin could support the ACF Blocks feature so that we can read the data saved inside...
At the moment I'm trying to make a **POST** request to a custom field in Wordpress (see code below). But whatever I try the browser stays giving the error: `Failed...
Steps to replicate: -Made sure that uploading file is possible via /wp-json/wp/v2/media/ POST [reference](https://developer.wordpress.org/rest-api/reference/media/) -On postman, /wp-json/acf/v3/users/140/ POST with body set as form-data, keys being _fields[imagefield]_ and value being a...
Hi, I need to upload a JSON file to a File Field created in ACF. I cannot upload the file through the media route, since it isn't a media file...
Hello, I am trying to GET (and after that I need to use POST) for **Product categories based on WooCommerce**. I'm trying for products, it works fine, I got this...
Using the REST API returns the field values, but no extra information about the field. It would be really useful to know what type of field it is too (image,...
Hi, We have a custom field added to the WooCommerce product category. Now i want to have the custom field available within the api. When i call "wp-json/wc/v3/products/categories/1825" the response...
Hi, I'm trying to active the filters per: https://github.com/airesvsg/acf-to-rest-api#editing-the-fields Could you elaborate on which file to add the following code in order to active the filter options: `// Enable the...
I have added the below filter to the functions.php file as covered in https://github.com/airesvsg/acf-to-rest-api/issues/254: ``` // Enable the option show in rest add_filter( 'acf/rest_api/field_settings/show_in_rest', '__return_true' ); ``` I still can...