Получить настраиваемое поле продукта, связанное с элементами заказа Woocommerce - PullRequest
0 голосов
/ 25 января 2019

Я пытаюсь добавить данные из настраиваемого поля перед промежуточной суммой при оформлении заказа / заказе, но get_post_meta не отображается.Я пробовал $product->get_ID(), $post_id и get_the_ID().

  add_filter( 'woocommerce_order_formatted_line_subtotal', 'custom_field_test');


function bmc_test($subtotal){ 
    global $woocommerce;
    global $item_id;
    //echo $values['price_currency'];

    //just tried to see if it I could get display
    wc_get_order_item_meta($item);


    $custom_field =  get_post_meta( $values['product_id'], 'custom_field', true );
    return  $custom_field . ' '. $subtotal;
    }

1 Ответ

0 голосов
/ 25 января 2019

В вашем коде отсутствуют некоторые аргументы и некоторые ошибки ... Вместо этого попробуйте следующее:

add_filter( 'woocommerce_order_formatted_line_subtotal', 'custom_field_test', 10, 3 );
function custom_field_test( $subtotal, $item, $order ){ 
    $product = $item->get_product(); // The instance of the WC_Product Object

    if( $custom_field =  get_post_meta( $product->get_id(), 'custom_field', true ) ) {
        $subtotal = $custom_field . ' '. $subtotal;
    }
    return $subtotal;
}

Код находится в файле function.php вашей активной дочерней темы (или активной темы).Проверено и работает.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...