Remove user account completely and remove Profile section at Wishlist page
-
How can I completely remove the user profile/account feature from the site so that customers can only shop as guests without any login option? Also, how can I remove the “Profile” section from the Wishlist page?
Hello,
Navigate to WooCommerce > Settings > Accounts & Privacy:
Then:
– Disable “Allow customers to create an account on the My Account page.”
– Disable “Allow customers to create an account during checkout.”
– Disable “Allow customers to log in during checkout”.
This will ensure customers can shop as guests only: https://postimg.cc/23jTzqWG
To remove account sidebar from wishlist page, Try to add the following custom css code in Theme Settings > Custom CSS:
.wd-my-account-sidebar {
display: none !important;
}
.woocommerce-MyAccount-content {
width: 100% !important;
max-width: 100% !important;
flex: 0 0 100% !important;
}
Best Regards