Comments 1Diamantaadria started the conversationJune 2, 2022 at 8:45amHi there, I need help,Is there any function to hide these address and phone number field? I don't need this fields for registering new customer.Rgds,Dia 2,214WebWizards repliedJune 2, 2022 at 6:19pmHi Dia,You can achieve this by adding the following PHP code snippet to your website: add_action('salesking_dashboard_head', function(){ ?> <style type="text/css"> #salesking_add_customer_form .form-group:nth-child(5), #salesking_add_customer_form .form-group:nth-child(6), #salesking_add_customer_form .form-group:nth-child(7), #salesking_add_customer_form .form-group:nth-child(8) { display: none; } </style> <?php }); A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/Kind regards,Stefan Sign in to reply ...
Hi there, I need help,
Is there any function to hide these address and phone number field?
I don't need this fields for registering new customer.
Rgds,
Dia
Hi Dia,
You can achieve this by adding the following PHP code snippet to your website:
A PHP snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/
Kind regards,
Stefan