Я нахожусь на woocommerce и пытаюсь по фрагментам, получить значение всех полей для отправки в приложение Android с json.
Беда в том, что я не могу зафиксировать значения пользовательских полей при извлечении.Я попытался с помощью плагина и фрагмента создать поле, но я не могу восстановить значения для отправки в json
поле было создано с этим фрагментом
add_action( 'woocommerce_after_order_notes', 'my_custom_checkout_field' );
function my_custom_checkout_field( $checkout ) {
echo '<div id="my_custom_checkout_field"><h2>' . __('My Field') . '</h2>';
woocommerce_form_field( 'my_field_name', array(
'type' => 'text',
'class' => array('my-field-class form-row-wide'),
'label' => __('Fill in this field'),
'placeholder' => __('Enter something'),
), $checkout->get_value( 'my_field_name' ));
echo '</div>';
}
при попытке создать json с этимсниппет, я могу получить все стандартные значения woo, но не могу получить настраиваемое поле
function action_woocommerce_order_status_completed( $array ) {
$order = wc_get_order( $order_id );
$url = 'localhost/wp/recolector.php';
//Initiate cURL.
$ch = curl_init($url);
// now you can get the data from $product array
};
//The JSON data.
$jsonData = array(
'email' => $order->get_billing_email(),
'first_name'=> $order->get_billing_first_name(),
'last_name' => $order->get_billing_last_name(),
'phone'=>$order->get_billing_phone()(),
'address'=>$order->get_billing_address_1(),
'city'=>$order->get_billing_city(),
'province'=>$order->get_billing_state(),
'country'=>$order->get_billing_country(),
'order'=>$order->get_order_number()
);
//Encode the array into JSON.
$jsonDataEncoded = json_encode($jsonData);
//Tell cURL that we want to send a POST request.
curl_setopt($ch, CURLOPT_POST, 1);
//Attach our encoded JSON string to the POST fields.
curl_setopt($ch, CURLOPT_POSTFIELDS, $jsonDataEncoded);
//Set the content type to application/json
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
//Execute the request
$result = curl_exec($ch);
};
// add the action
add_action( 'woocommerce_order_status_completed', 'action_woocommerce_order_status_completed', 10, 1 );
ну как можно добавить my_field_name в json?
Спасибо за помощь.