Skip to content

Instantly share code, notes, and snippets.

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

FluxCoder

🏠
Working from home
View GitHub Profile
@woogist
woogist / functions.php
Created December 24, 2014 11:17
Remove the Billing VAT field from the checkout form only for Wholesalers.
/**
* Remove the Billing VAT field from the checkout form only for Wholesalers.
*/
function custom_override_checkout_fields( $fields ) {
if ( ! current_user_can( 'wholesalers' ) && isset( $fields['billing']['billing_vat'] ) ) {
unset( $fields['billing']['billing_vat'] );
}
return $fields;
@bradtraversy
bradtraversy / webdev_online_resources.md
Last active July 24, 2024 20:54
Online Resources For Web Developers (No Downloading)