隐藏后端产品页面中的特色复选框设置

时间:2017-02-14 21:49:47

标签: php wordpress woocommerce backend product

使用WooCommerce,我想在后端(管理员)的产品页面设置中隐藏或删除 FEATURED 复选框,请参阅下面的屏幕截图。

我尝试使用CSS display:none ,但它确实无效。

任何帮助将不胜感激

由于

screenshot of the backend feature setting on products pages

1 个答案:

答案 0 :(得分:4)

是的,可以使用隐藏在 admin_head wordpress钩子中的自定义函数,这将在管理头中注入一些CSS规则。在这里,我们定位产品帖子类型页面。

以下是代码:

add_action('admin_head', 'hiding_and_set_product_settings');
function hiding_and_set_product_settings(){
    echo '<style>
        .post-type-product #catalog-visibility-select p:nth-of-type(2),
        .post-type-product #catalog-visibility-select label[for=_featured],
        .post-type-product #catalog-visibility-select input[type=checkbox] { visibility: hidden !important; display none !important;}
    </style>';
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

此代码经过测试并有效。

请参阅我的测试原始服务器的屏幕截图:

enter image description here