Skip to content

Instantly share code, notes, and snippets.

View neerav's full-sized avatar

Neerav D. neerav

View GitHub Profile
@corsonr
corsonr / gist:7215762
Last active December 16, 2020 01:48
WooCommerce: Hide Checkout Fields For Virtual Products
<?php
add_filter( 'woocommerce_checkout_fields' , 'woo_remove_billing_checkout_fields' );
/**
* Remove unwanted checkout fields
*
* @return $fields array
*/
function woo_remove_billing_checkout_fields( $fields ) {