В вашем коде отсутствуют некоторые аргументы и некоторые ошибки ... Вместо этого попробуйте следующее:
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 вашей активной дочерней темы (или активной темы).Проверено и работает.