• Hi, is it possible to get all the created fields in PHP? I don’t see how I can make an instance of the classes that seem to have the methods I need.

Viewing 1 replies (of 1 total)
  • Plugin Support Tomasz WP Desk

    (@tomaszwp)

    Hello @vorodk

    Use below PHP code to show a value of specific field entered in the checkout.
    echo $order->get_meta( 'meta_name');

    Check the field configuration to get its meta name.

    Example
    Use below PHP code to show VAT Number field value with meta name _billing_vat_number.
    echo $order->get_meta( '_billing_vat_number');

Viewing 1 replies (of 1 total)
  • The topic ‘Get all custom fields in php’ is closed to new replies.