简体   繁体   English

WooCommerce - 从我的帐户页面的菜单中删除下载

[英]WooCommerce - Remove downloads from menu in my account page

I would like to remove downloads menu from my account page .我想从我的帐户页面中删除下载菜单。

How can I do this?我该怎么做? Is it any hook to remove a specific item from the menu?从菜单中删除特定项目是否有任何钩子?

Thanks.谢谢。

Go to WooCommerce > Settings > Advanced and remove the entry for Downloads in the Account endpoints section, just leave it blank.转到WooCommerce > Settings > Advanced并删除帐户端点部分中的下载条目,将其留空。 And the menu will not be visible anymore.菜单将不再可见。

删除下载链接

You will need this lightly customized this code snippet:您将需要这个稍微定制的代码片段:

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

This code goes on function.php file of your active child theme (or theme) or in any plugin file.此代码位于活动子主题(或主题)的 function.php 文件或任何插件文件中。

This code is tested and working这段代码已经过测试并且可以正常工作

[data-tab="downloads"] {
    display: none!important;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 从 WooCommerce 我的帐户下载的产品名称中删除链接 - Remove link from product name on WooCommerce my account downloads 从客户我的帐户页面中删除已取消的WooCommerce订单 - Remove cancelled WooCommerce orders from customers my account page WooCommerce 我的帐户 - 下载:列出所有产品 - WooCommerce my account - downloads: listing all products 如何在 WooCommerce /my-account/downloads/ 中的下载表中添加一列 - How to add a column to the downloads table in WooCommerce /my-account/downloads/ 如何将链接项目添加到 WooCommerce 我的帐户菜单中的另一个页面 - How to add a linked item to another page in WooCommerce My Account menu WooCommerce 我的帐户页面自定义菜单项与自定义链接 - WooCommerce My Account page custom menu item with custom link WooCommerce“我的账户”页面如何定义相互关联的菜单和操作? - How to define interrelated menu and action on WooCommerce "My account" page? 删除我的帐户订单列表中的分页,使其成为woocommerce中的一个页面 - Remove pagination on My account orders list to make it one page in woocommerce WooCommerce 订阅:删除我的帐户页面上的“浏览产品”按钮 - WooCommerce Subscriptions: Remove “Browse products” button on my account page 从 Woocommerce 的电子邮件通知中删除下载部分 - Remove downloads section from email notifications in Woocommerce
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM