Вы можете добавить класс-оболочку 'wrapper_class' => 'form-row-full',
Для wrapper_class
есть другие возможности:
form-row-first
- 50% ширины слева form-row-last
- 50% ширины, справа form-row-full
- 100% ширины, полное
// 1. Add custom field input @ Product Data > Variations > Single Variation
add_action( 'woocommerce_variation_options_pricing', 'Add_bulk_price_to_variations', 10, 3 );
function Add_bulk_price_to_variations( $loop, $variation_data, $variation ) {
woocommerce_wp_text_input( array(
'id' => 'bulk_price[' . $loop . ']',
'desc_tip' => 'true',
'description' => __( 'Enter the Bulk price here.', 'woocommerce' ),
'label' => __( 'Custom Field', 'woocommerce' ),
'wrapper_class' => 'form-row-full',
'value' => get_post_meta( $variation->ID, 'bulk_price', true )
));
}