ACF Support
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] 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: [Advanced Custom Fields (ACF®)] Notice: Undefined indexForum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] 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.
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: [Advanced Custom Fields (ACF®)] Woocommerce purchase noteHi there!
ACF Support Team here. This forum is generally used by ACF users to help each other out.
However, we would love to have a closer look at your setup, please can you create a ticket using our support form and we can look into it further.
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Google indexing fields as ‘no content’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.
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: [Advanced Custom Fields (ACF®)] Gallery issuesForum: Plugins
In reply to: [Advanced Custom Fields (ACF®)] Dont work with my ‘author’ role userHi @byron222
ACF Support Team here. This forum is generally used by ACF users to help each other out.
You can update the capability setting using the acf_update_setting() function as shown below:
add_action( 'acf/init', 'my_acf_init_settings' ); function my_acf_init_settings() { // https://www.advancedcustomfields.com/resources/acf-settings/ acf_update_setting( 'capability', 'author' );//Default is manage_options }To make the changes persist even with updates, you can place the code in your child theme.
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: [Advanced Custom Fields (ACF®)] Delete Custom Fields PluginHi 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: [Advanced Custom Fields (ACF®)] Custom field doesn’t accept imagesHi 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: [Advanced Custom Fields (ACF®)] ACFs for menu items dupicatingHi 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: [Advanced Custom Fields (ACF®)] disable social icons for particularHi @nebadita
ACF Support Team here, Thanks for reaching out with your query we would be happy to assist.
Please have a look at our documentation at https://www.advancedcustomfields.com/resources/hiding-empty-fields/.
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: [Advanced Custom Fields (ACF®)] Return only one arrayHi @bonumaster
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.