Okay
  Public Ticket #3547747
My account page - how to remove Download section
Closed

Comments

  •  3
    Branislav started the conversation

    Hello there,

    As I do not have any downloadable products, how can I remove that section from My Account page? Please see attached screenshot.

    I believe I am right when I say that that part is for Downloadable products?

    Attached files:  Snimak ekrana 2023-12-21 113732.png

  •  1,910
    WebWizards replied

    Hello Branislav,

    You can remove this area by adding the following PHP code snippet to your site:

    function custom_my_account_menu_items( $items ) {
        unset($items['downloads']);
        return $items;
    }
    add_filter( 'woocommerce_account_menu_items', 'custom_my_account_menu_items' );
    

    The snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/


    Yes, that feature is normally for downloads from downloadable products.


    Kind regards,

    Stefan

  •  3
    Branislav replied

    Thank you very much - it is working.

    Regards