我想在Redux Framework中隐藏“上传”字段。
我找到了一种方法,但它无法隐藏“上传”字段。我试过'image'=>是的,但它不起作用。
'show' => array(
'title' => true,
'description' => true,
'url' => false
),
Hide 'Upload' field in Redux Framework
有任何建议或评论吗?或者,如何通过编辑核心文件来实现?
感谢。
答案 0 :(得分:1)
解决了:)
如何?
添加班级名称。
array(
'title' => __('Add Service Item', 'polos'),
'id' => 'service_items',
'class' => 'serviceExClass', // See theme functions.php
'type' => 'slides',
'Placeholder' => array (
'url' => 'Service Icon Code',
'title' => 'Service Title',
'description' => 'Service Description',
)
)
我已经定义了类名serviceExClass。现在转到theme functions.php文件并在那里写 -
function my_custom_admin_head_ar() {
echo '<style>
.serviceExClass .redux-container-slides .redux_slides_add_remove {
display: none !important;
}
</style>';
}
add_action( 'admin_head', 'my_custom_admin_head_ar' );
现在将为特定部分隐藏“上传”字段。我的朋友帮助了我很多,找出解决方案。
感谢。