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

时间:2016-09-02 01:03:52

标签: css wordpress woocommerce product

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

Screenshot of my page

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

我也尝试了

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

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

1 个答案:

答案 0 :(得分:0)

在主题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>';
}

或者

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