Comments 3Branislav started the conversationDecember 21, 2023 at 10:40amHello 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 2,218WebWizards repliedDecember 22, 2023 at 2:55amHello 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 3Branislav repliedDecember 22, 2023 at 8:02amThank you very much - it is working.Regards1 Like Sign in to reply ...
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
Hello Branislav,
You can remove this area by adding the following PHP code snippet to your site:
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
Thank you very much - it is working.
Regards