WHMCS-bridge

Watch The Dot Ltd Home Announcements Knowledgebase Network Status Affiliates Contact Us Account  Login Forgot Password? Knowledgebase Portal Home > Knowledgebase > WooCommerce > Make Billing Fields Compulsory Make Billing Fields Compulsory To make WooCommerce Billing fields compulsory, the following code can be added to functions.php. Please note unless you are experienced with php, you […]
ContactRead More

Portal Home > Knowledgebase > WooCommerce > Make Billing Fields Compulsory


Make Billing Fields Compulsory




To make WooCommerce Billing fields compulsory, the following code can be added to functions.php. Please note unless you are experienced with php, you shoul dproceed with caution as an incorrect installation can render your website inoperable.

add_filter('woocommerce_billing_fields', 'wtd_custom_billing_fields', 1000, 1);
function wtd_custom_billing_fields( $fields ) {
    $fields['billing_email']['required'] = true;
    $fields['billing_phone']['required'] = true;

    return $fields;
}

 

 

 



Was this answer helpful?

Print this Article Print this Article

Also Read

Powered by WHMCompleteSolution

WordPress and WHMCS integration by i-Plugins