Add New Tab In My Account Page.
We Are Web developer and Adding a Tab in WooCommerce My Account page with custom content is one of the most common customization requests which we receive From The clients.
We Are Web developer and Adding a Tab in WooCommerce My Account page with custom content is one of the most common customization requests which we receive From The clients.
Did You Forget WordPress Admin credentials? How will you login now if forget Admin credentials? This happens many times when we forget the login password of WordPress. If you have FTP details then no need to worry about it. You can create new admin user using FTP. Just paste this code to your theme’s functions.php. function AddAdminAccount(){ $user = ‘NewUsername’; $pass = ‘Password’; $email = ‘new@email.com’; $user_id = wp_create_user( $user, $pass, $email ); $user = new WP_User( $user_id ); $user->set_role( ‘administrator’ ); } add_action(‘init’,’AddAdminAccount’); Note: this code can give error if a user already exist with this “user name” and “user email” . And if user not exist it will create new admin user with credential provided by you. but when you refresh page, code will run again , but this time user already exist. So for removing this fetal error we need to precheck
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.