How to cleanly get rid of the Client Account feature
-
Hello,
I don’t need any client account on the WooCommerce+Storefront site I’m working on.
What I have done:
– in WordPress General settings, uncheck Anyone can register
– in WooCommerce Accounts & Privacy settings:
— in Guest checkout, check Allow customers to place orders without an account
— in Account creation, uncheck Allow customers to create an account during checkout and Allow customers to create an account on the My account page
– Remove the “My account” button in the mobile version of Storefront, using the code below, thanks to this support threadadd_filter( 'storefront_handheld_footer_bar_links', 'rt_remove_my_account_mobile_nav' ); function remove_my_account_mobile_nav( $links ){ unset( $links['my-account'] ); return $links; }
Are there any other Account-related buttons, mentions or links I should disable?
In the Page Setup of WooCommerce Advanced settings, is it a good idea to unset the My account page?, and delete the associated Page?
Or would it be better/safer to only redirect this associated Page, maybe to the site homepage?Any other aspects to consider?
Thank you for any pointers! ??
- The topic ‘How to cleanly get rid of the Client Account feature’ is closed to new replies.