Hou
Min
Sec
Hou
Min
Sec

Uncategorized

Remove Checkout Fields Without a Plugin in wordpress

open function.php file and pest this code and update file // Hook inadd_filter( ‘woocommerce_checkout_fields’ , ‘webrpoint’ ); // Our hooked in function – $fields is passed via the filter!function webrpoint( $fields ) { unset( $fields[‘billing’][‘billing_last_name’] );unset( $fields[‘billing’][‘billing_last_name’] );unset( $fields[‘billing’][‘billing_company’] );unset( $fields[‘billing’][‘billing_address_1’] );unset( $fields[‘billing’][‘billing_address_2’] );unset( $fields[‘billing’][‘billing_city’] );unset( $fields[‘billing’][‘billing_postcode’] );unset( $fields[‘billing’][‘billing_country’] );unset( $fields[‘billing’][‘billing_state’] ); unset( $fields[‘order’][‘order_comments’] ); …

Remove Checkout Fields Without a Plugin in wordpress Read More »

Scroll to Top