Add Field Date of Birth – register page
WP-Members Add date-of-birth field to my-account / account detail page /* add date of birth field account detail page */// Add field – my accountfunction action_woocommerce_edit_account_form() {woocommerce_form_field( ‘date_of_birth’, array(‘type’ =>…
Reorder Multiple Tabs – My Account Page on Woocommerce
add_filter( ‘woocommerce_account_menu_items’, ‘bbloomer_add_link_my_account’ );function bbloomer_add_link_my_account( $items ) {$newitems = array(‘dashboard’ => ( ‘Dashboard’, ‘woocommerce’ ), ‘anyuniquetext123’ => ( ‘My Membership’, ‘woocommerce’ ),‘wt-smart-coupon’ => ( ‘My Coupons’, ‘woocommerce’ ), ‘points’ =>…