I can't find an easy way to hide some WooCommerce billing and shipping fields that are visible in the user profile in the backend of WordPress.
For instance I want to hide billing_address_2 and shipping_address_2 in the WordPress user profile. Is there a good way to do that with a code snippet? I tried hiding the sixt row in css with the code below, but I can't get that to work either.
#fieldset-billing.form-table tr:nth-child(6) {
display: none;
}
How can I hide WooCommerce billing and shipping fields in WordPress user profile?