Remove the PayPal tab in My Account in WooCommerce

Remove the PayPal tab in My Account in WooCommerce on child sites.

Snippet Type

Execute on Child Sites

Snippet

add_filter('woocommerce_account_menu_items', 'wc_paypal_remove_my_account_links', 50);

function wc_paypal_remove_my_account_links($menu_links)
{

    unset($menu_links['ppcp-paypal-payment-tokens']);

    return $menu_links;
}
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.