使用WooCommerce,我想隐藏或删除后端(管理员)中产品页面设置中的FEATURED复选框,请参阅下面的屏幕截图.
我试过CSS显示:没有,但它不起作用.
任何帮助将不胜感激
谢谢
解决方法:
是的,可以使用一个自定义函数挂钩在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文件中,或者放在任何插件文件中.
此代码经过测试和运行.
查看我的测试原始服务器的屏幕截图: