• Resolved cjmclean

    (@cjmclean)


    I’m looking to remove the “Downloads”, “Orders” and “Billing Address” endpoints on the main account page as my site is purely for content restriction only for logged in members. How do I go about doing this?

    • This topic was modified 6 months ago by cjmclean.
Viewing 1 replies (of 1 total)
  • Plugin Support Ibrahim Nasir

    (@ibrahimkh4l33l)

    Hello cjmclean ????,

    Please add the code below to your active theme’s function.php file or via the Code Snippets plugin.

    /** Code snippet below disables the orders, downloads and billing tabs from the My Account page */
    add_filter('ppress_myaccount_tabs', function($tabs) {
      unset($tabs['list-orders']);
      unset($tabs['list-downloads']);
      unset($tabs['billing-details']);
    
      return $tabs;
    });

    Best regards

Viewing 1 replies (of 1 total)
  • The topic ‘Customising account page’ is closed to new replies.