Hide the delete text from WooCommerce’s order page
-
Hello,
In woocommerce’s order page’s note section, admins are allowed to add not and can also delete the note. I want to disable the delete button. Is there way to remove/hide the delete text, so no one could delete the note?
Snapshot:- https://i.imgur.com/1o7xCsW.png
EDIT:- I used the following code, but its not working
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>'; } }
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Hide the delete text from WooCommerce’s order page’ is closed to new replies.