Skip to content

Instantly share code, notes, and snippets.

View isheraz's full-sized avatar
:atom:

Sheraz Ahmed isheraz

:atom:
View GitHub Profile
@isheraz
isheraz / remove_checkout_fields.php
Created August 17, 2018 07:03 — forked from cryptexvinci/remove_checkout_fields.php
Remove fields from WooCommerce checkout page.
add_filter( 'woocommerce_checkout_fields' , 'custom_remove_woo_checkout_fields' );
function custom_remove_woo_checkout_fields( $fields ) {
// remove billing fields
unset($fields['billing']['billing_first_name']);
unset($fields['billing']['billing_last_name']);
unset($fields['billing']['billing_company']);
unset($fields['billing']['billing_address_1']);
unset($fields['billing']['billing_address_2']);