[ad_1]
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
