The Woocommerce Paypal Payments plugin adds a "Paypal payments" tab on the Woocommerce My Account page. How do I remove this tab entirely?
I have tried this snippet modified from one found here but was unsuccessful in removing the tab.
add_filter ( 'woocommerce_account_menu_items', 'misha_remove_my_account_links' );
function misha_remove_my_account_links( $menu_links ){
unset( $menu_links['ppcp-paypal-payment-tokens'] );
return $menu_links;
}