A Cozmoslabs Product
Documentation / Profile Builder Developer Knowledge Base / Support Themes / Plugins / Remove billing_email from WooCommerce addon

Remove billing_email from WooCommerce addon

This function remove billing_email from WooCommerce addon.

wppb_woo_billing_fields is located in PB WooCommerce Add-on: billing-fields.php

1
2
3
4
5
6
7
8
9
10
11
/*
 * Remove billing_email from WooCommerce addon
 */
 
add_filter( 'wppb_woo_billing_fields', 'wppbc_remove_billing_email' );
function wppbc_remove_billing_email( $fields ) {
   if( is_array( $fields ) && isset( $fields['billing_email'] ) ) {
      unset( $fields['billing_email'] );
   }
   return $fields;
}

The Ultimate Membership Bundle

Combine the power of Profile Builder with Paid Member Subscriptions to set up user registration, memberships, and recurring revenue.

Get 25% off with the bundle

Help & Support

We’re here to help you every step of the way.

Open a Support Ticket