ACF Support
Forum Replies Created
-
Hi @floureye
ACF Support Team here. This forum is generally used by ACF users helping 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.
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: [Advanced Custom Fields (ACF®)] PHP 8, PHP8.1 ErrorHi there!
ACF Support Team here, Thanks for reaching out with your query we would be happy to assistACF plugin is fully compatible with PHP versions 8.0 and 8.1. However, your code might not be, so we recommend testing PHP 8 version in a staging environment to ensure everything works as expected before upgrading live environments.
Can you please enable DEBUG_MODE and WP_DEBUG_LOG which will allow errors to be logged into the file ‘/wp-content/debug.log’
Here is some code to add to your wp-config.php file which will enable these constants:
define('WP_DEBUG', true); define('WP_DEBUG_DISPLAY', false); define('WP_DEBUG_LOG', true );Try running the accessing the site again and check what the errors say.
If you need further clarification, please 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.
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: [Advanced Custom Fields (ACF®)] 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.
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: [Advanced Custom Fields (ACF®)] 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: [Advanced Custom Fields (ACF®)] 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: [Advanced Custom Fields (ACF®)] 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: [Advanced Custom Fields (ACF®)] Image field not letting me change itHi @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.