Support

Account

Home Forums General Issues Need help to display customer order details in WooCommerce Reply To: Need help to display customer order details in WooCommerce

  • I successfully displayed checkbox field value to it, try to modify it with your own field name. I hope it helps

    <?php
    $current_user_id = get_current_user_id();
    $acf_filed_array = get_field( ‘customer_remark’,’user_’.$current_user_id);
    if ( $acf_filed_array ):
    foreach ( $acf_filed_array as $acf_filed_item ):
    echo $acf_filed_item.'<br> ‘;
    endforeach;
    endif; ?>