'Is there a way to remove the "Delete note" function?
In Woocommerce order notes there is a link to delete order notes. Is there a way to remove this ability to remove that ability?
Solution 1:[1]
You can try adding this in your functions.php file:
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>';
    }
}
    					Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source | 
|---|---|
| Solution 1 | markmoxx | 
