[ad_1]
I tried this code on the function.php file but still not working. I also tried out a plugin called “Checkout Field Editor for WooCommerce” but it doesn’t have the option to remove the Email field on the free plan😢
add\_filter(‘woocommerce\_checkout\_fields’, ‘hide\_email\_field’); function hide\_email\_field($fields) { unset($fields\[‘billing’\]\[‘billing\_email’\]); return $fields; }
[ad_2]