Home › Forums › General Issues › ACF data not showing in the front without a manual post update. › Reply To: ACF data not showing in the front without a manual post update.
@justin-graham I cannot provide hands on help. For that you would need to open a ticket by logging into your account. Not sure if the new devs provide that type of support or not.
I would try changing your add_action() to include the variables provided by WC
add_action('woocommerce_single_product_summary',
'woo_display_custom_general_fields_values', 45, 2);
function woo_display_custom_general_fields_values($post, $product) {
.........
and then supply ACF with the post ID in get field
// example
$parentSKU = get_field('parent_barcode_sku', $post->ID);
If that does not work I would look in the database and make sure that WPAI is creating the correct field key references and storing the value correctly. If it is not then the issue is with WPAI.
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.