Hide Downloads Link on WooCommerce My Account if Customer has no Downloadable Products

PHOTO EMBED

Sat Apr 16 2022 08:30:16 GMT+0000 (Coordinated Universal Time)

Saved by @netropol #php

add_filter( 'woocommerce_account_menu_items', 'snippetpress_remove_empty_downloads_link' ); 
function snippetpress_remove_empty_downloads_link( $items ) {   
    if (!is_admin()){       
        $downloads     = WC()->customer->get_downloadable_products();
        $has_downloads = (bool) $downloads;
        if ( !$has_downloads) {
            unset($items['downloads']);
        }       
    }   
    return $items;
}
content_copyCOPY

https://snippetpress.com/hide-downloads-link-on-woocommerce-my-account-if-customer-has-no-downloadable-products/