gpt4 book ai didi

css - 删除+添加新产品类别链接

转载 作者:行者123 更新时间:2023-11-28 05:16:33 25 4
gpt4 key购买 nike

为了在我的 WooCommerce 产品页面中删除或隐藏此链接,我使用了以下无效的 CSS;

Screenshot of my page

.product_cat-add-toggle  {
display: none;
}

我也试过

#product_category-add-toggle {
display: none;
visibility: hidden;
}

对于这两段 CSS,我尝试添加 !important 但仍然没有成功。

最佳答案

在你的主题 functions.php 中试试

add_action('admin_head', 'my_custom_admin_style');

function my_custom_admin_style() {
echo '<style>
#product_category-add-toggle {display: none !important;}
</style>';
}

或者

尝试删除用户为特定 Angular 色创建 woocommerce 新类别的功能

关于css - 删除+添加新产品类别链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39282922/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com