Support

Account

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.