• Resolved wpguillaume

    (@wpguillaume)


    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 thread

    add_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! ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter wpguillaume

    (@wpguillaume)

    Anyone? ??

    >Are there any other Account-related buttons, mentions or links I should disable?

    I can’t think of any.

    >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?

    If you’re not going to be needing any of the functionality on the “my account” page, I can’t foresee any problems with simply unsetting that.

    Plugin Support AW a11n

    (@slash1andy)

    Automattic Happiness Engineer

    Hey there!

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – if you have any further questions, you can start a new thread.

    Thread Starter wpguillaume

    (@wpguillaume)

    Yes, sorry!

    I hadn’t got to it yet, but @wbrubaker fully answered my questions.

    Thanks! ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to cleanly get rid of the Client Account feature’ is closed to new replies.