在订单附注面板中隐藏“删除附注”链接

时间:2020-01-24 作者:wptent

如何隐藏订单注释面板中的“删除注释”链接?有可以使用的挂钩吗?

Sample order note

2 个回复
最合适的回答,由SO网友:Dharmishtha Patel 整理而成

您可以尝试将其添加到函数中。php文件:

add_action(\'admin_head\', \'hide_delete_note_from_edit_order\');
function hide_delete_note_from_edit_order()
{
    $screen = get_current_screen();
    if ($screen->post_type === "shop_order" && $screen->base === "post") {
        echo \'<style>a.delete_note { display:none; }</style>\';
    }
}

SO网友:Admiral Noisy Bottom

答案是Dharmishtha Patel 是一种很好的使用方法。另一种需要较少处理的方法是“附加CSS”功能。

在仪表板中选择“外观|自定义|其他CSS”以显示编辑框。

如果要更改的样式是a.delete\\u note,请键入以下内容;

.a.delete_note { display: none; }
或者也许

a.delete_note { display: none }
此方法可用于隐藏许多元素并覆盖现有css样式。

More information can be found here.

相关推荐