0
votes

I added custom/extra user details in registration form of woocommerce (image attached - https://i.ibb.co/m5rG84C/stack1.png).

To add new form elements i used woocommerce_register_form action hook

add_action( 'woocommerce_register_form', 'Add_extra_register_fields' );

To save the data i used woocommerce_created_customer action hook.

All the above are working fine. I added this via child theme.

Now i am trying to show that custom fields in Account details page in Woocommerce user login area.(image attached - https://i.ibb.co/pZt4BBk/stack2.png) But i am not able to do this. Can someone please guide me on this.

thanks