ACF Support
Forum Replies Created
-
Forum: Plugins
In reply to: [Secure Custom Fields] After update 6.0.3 – still tells me to update to 6.0.3Hi there!
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to continue investigating and troubleshooting this issue, please can you create a ticket using our ?support form and we can look into it further.
Hi there!
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to continue investigating and troubleshooting this issue, please can you create a ticket using our ?support form and we can look into it further.
Forum: Plugins
In reply to: [Secure Custom Fields] ACF FieldsHi there!
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to continue investigating and troubleshooting this issue, please can you create a ticket using our ?support form and we can look into it further.
Forum: Plugins
In reply to: [Secure Custom Fields] Add Data using rest API on ACF repeater fieldsHi there!
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to continue investigating and troubleshooting this issue, please can you create a ticket using our ?support form and we can look into it further.
Forum: Plugins
In reply to: [Secure Custom Fields] auto custom fieldHi there!
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to continue investigating and troubleshooting this issue, please can you create a ticket using our ?support form and we can look into it further.
Forum: Plugins
In reply to: [Secure Custom Fields] dynamically modify custom fields using formsHi there!
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to continue investigating and troubleshooting this issue, please can you create a ticket using our ?support form and we can look into it further.
Forum: Plugins
In reply to: [Secure Custom Fields] get_fields in the save_post hookHi there!
ACF Support Team here, Thanks for reaching out with your query we would be happy to assistIf you are trying to retrieve field data before saving the values in the database, you can replace the line below:
add_action('acf/save_post', 'test_acf', 20);
with:
add_action('acf/save_post', 'my_acf_save_post', 5);
The you can access the value using field key as shown below:
$value=$_POST['acf']['field_abc123']
Please check out our documentation at https://www.advancedcustomfields.com/resources/acf-save_post/#applied-before-save.
If you need further clarification, please create a ticket using our ?support form and we can look into it further.
Hi @alvarofranz
ACF Support Team here, Thanks for reaching out with your query we would be happy to assistIt is strongly recommended you back up your site especially the database before carrying out such operations.
That said, you will have to run the query below to delete the fields as well.
DELETE FROM wp_posts WHERE post_type = 'acf-field';
Please note the recommended way of deleting field groups is through the user interface(UI) at WordPress Admin-> Custom Fields-> Field Groups.
If you need further clarification, please create a ticket using our ?support form and we can look into it further.
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to continue investigating and troubleshooting this issue, please can you create a ticket using our ?support form and we can look into it further.
Forum: Plugins
In reply to: [Secure Custom Fields] Image field not letting me change itForum: Plugins
In reply to: [Secure Custom Fields] Official support blocks my attempt to registerHi @publicradio
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to continue investigating and troubleshooting this issue, please can you create a ticket using our ?support form and we can look into it further.
Forum: Plugins
In reply to: [Secure Custom Fields] ACF removes Woocommerce order custom fieldsHi there!
ACF Support Team here, Thanks for reaching out with your query we would be happy to assistYou can add the filter below in your child theme functions.php to show standard custom fields.
add_filter( 'acf/settings/remove_wp_meta_box', '__return_false');
If you need further clarification, please create a ticket using our ?support form and we can look into it further.
Forum: Plugins
In reply to: [Secure Custom Fields] Notice: Undefined indexForum: Plugins
In reply to: [Secure Custom Fields] get the fixable content fields value json apiHi @kslrweb
ACF Support Team here, Thanks for reaching out with your query we would be happy to assist.
I am afraid ACF as it is out of the box doesn’t have a feature to import data and this is not something we can be able to assist from our end due to clarification.
However, for basic fields such as text, the ACF plugin uses the field name as the meta_key in the wp_postmeta table(For fields in posts) to save the field value and the field reference key. That is field_name will be used to store the value of the field and _field_name will be used to store the field key as shown in the image at https://drive.google.com/file/d/1N9LoJ3WIFRVb5awF1tZ1oEkmsC22DD8f/view?usp=sharing.
For the select field, the data is stored similarly to that of the basic fields, however, when multi-select is enabled, the value is stored as a serialized array in order to accommodate all the choices selected as illustrated at https://drive.google.com/file/d/1xyhajG-jVjC7zGh2LMGN7RosMz7ffdbp/view?usp=sharing.That said, you should ensure the data is stored in the right format for ACF to understand it. You can also check with Celigo Support if they have a way to execute custom code during import so that you can use update_field() to update the field.
If you need further clarification, please create a ticket using our ?support form and we can look into it further.