Skip to content

Instantly share code, notes, and snippets.

View anuranjanverma's full-sized avatar
🏠
Working from home

Anuranjan Verma anuranjanverma

🏠
Working from home
View GitHub Profile
@mcnaveen
mcnaveen / file.php
Created October 18, 2020 19:46
Add Custom Fields to WooCommerce Checkout and Store in Order Details Page
add_action('woocommerce_after_order_notes', 'my_custom_checkout_field');
function my_custom_checkout_field( $checkout ) {
echo '<div id="my_custom_checkout_field"><h3>'.__('My Field').'</h3>';
woocommerce_form_field( 'my_field_name', array(
'type' => 'text',
'class' => array('my-field-class orm-row-wide'),
'label' => __('Fill in this field'),