Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom value in woocommerce webhook payload

I have webhook with topic Order Updated. Webhook delivers payload (Order information) at someotherdomain.com. I want to add extra field from checkout form to be delivered at someotherdomain.com along with order information.

I have created custom checkout field by:

add_action( 'woocommerce_after_order_notes', 'fs_custom_checkout_field' );


function fs_custom_checkout_field( $checkout ) {


echo '<div id="my_custom_checkout_field"><h2>' . __('Extra Information') . '</h2>';

woocommerce_form_field( 'fs_psid_field', array(
    'type'          => 'text',
    'class'         => array('my-field-class form-row-wide'),
    'label'         => __('Fill in this field'),
    'placeholder'   => __('Enter something'),
    ), $checkout->get_value( 'fs_psid_field' ));

echo '</div>';

}

And saved meta as:

add_action( 'woocommerce_checkout_update_order_meta', 'my_custom_checkout_field_update_order_meta' );


function my_custom_checkout_field_update_order_meta( $order_id ) {
    if ( ! empty( $_POST['fs_psid_field'] ) ) {
        update_post_meta( $order_id, 'fs_psid_field', sanitize_text_field( $_POST['fs_psid_field'] ) );
    }
}

But field fs_psid_field is not posted via webhook.

Q: How can I post value of this field via Woocommerce webhook?

like image 715
Saqib Omer Avatar asked Dec 24 '22 02:12

Saqib Omer


1 Answers

Figured out. First add custom field on check out form.

add_action( 'woocommerce_after_order_notes', 'fs_custom_checkout_field' );

function fs_custom_checkout_field( $checkout ) {

    echo '<div id="my_custom_checkout_field"><h2>' . __('Extra Information') . '</h2>';

    woocommerce_form_field( 'fs_psid_field', array(
        'type'          => 'text',
        'class'         => array('my-field-class form-row-wide'),
        'label'         => __('Fill in this field'),
        'placeholder'   => __('Enter something'),
        ), $checkout->get_value( 'fs_psid_field' ));

    echo '</div>';

}

Then save custom field's value as meta

add_action( 'woocommerce_checkout_update_order_meta', 'my_custom_checkout_field_update_order_meta' );

function my_custom_checkout_field_update_order_meta( $order_id ) {
    if ( ! empty( $_POST['fs_psid_field'] ) ) {
        update_post_meta( $order_id, 'fs_psid_field', sanitize_text_field( $_POST['fs_psid_field'] ) );
    }
}

Then add custom field's value in api response

function my_custom_wc_api_order_response( $order_data, $order ) {

    $psidMeta      = get_post_meta($order->id , 'fs_psid_field' , true );
    $order_data['psid'] = $psidMeta;
    return $order_data;
}

add_filter( 'woocommerce_api_order_response', 'my_custom_wc_api_order_response', 10, 3 );
like image 63
Saqib Omer Avatar answered Dec 26 '22 17:12

Saqib Omer