Skip to content

Instantly share code, notes, and snippets.

View ruucm's full-sized avatar
🎾
Focusing

ruucm

🎾
Focusing
View GitHub Profile
@ruucm
ruucm / gist:fc8dae787fba410b0c88fed7d2265efb
Created November 2, 2018 16:57
WordPress functions.php Cheat Sheet
/**
* Unset Woocommerce Shipping Address fields
*/
add_filter( 'woocommerce_checkout_fields' , 'custom_remove_woo_checkout_fields' );
function custom_remove_woo_checkout_fields( $fields ) {
// remove billing fields
// unset($fields['billing']['billing_country']);