|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- This is a code snippets export file generated by the Code Snippets WordPress plugin. --> |
| 3 | +<!-- https://wordpress.org/plugins/code-snippets --> |
| 4 | +<!-- To import these snippets a WordPress site follow these steps: --> |
| 5 | +<!-- 1. Log in to that site as an administrator. --> |
| 6 | +<!-- 2. Install the Code Snippets plugin using the directions provided at the above link. --> |
| 7 | +<!-- 3. Go to 'Tools: Import' in the WordPress admin panel. --> |
| 8 | +<!-- 4. Click on the "Code Snippets" importer in the list --> |
| 9 | +<!-- 5. Upload this file using the form provided on that page. --> |
| 10 | +<!-- 6. Code Snippets will then import all of the snippets and associated information contained in this file into your site. --> |
| 11 | +<!-- 7. You will then have to visit the 'Snippets: All Snippets' admin menu and activate desired snippets. --> |
| 12 | +<!-- generator="Code Snippets/2.9.4" created="2017-11-17 16:57" --> |
| 13 | +<snippets> |
| 14 | + <snippet scope="1"> |
| 15 | + <name>Disable Woocommerce delete for orders</name> |
| 16 | + <desc></desc> |
| 17 | + <tags>disable, woocommerce, delete, orders</tags> |
| 18 | + <code>// disable delete entirely |
| 19 | +function restrict_post_deletion($post_ID){ |
| 20 | + $type = get_post_type($post_ID); |
| 21 | + if($type == 'shop_order'){ |
| 22 | + echo "You are not authorized to delete this page."; |
| 23 | + exit; |
| 24 | + } |
| 25 | +} |
| 26 | +add_action('wp_trash_post', 'restrict_post_deletion', 10, 1); |
| 27 | +add_action('before_delete_post', 'restrict_post_deletion', 10, 1);</code> |
| 28 | + </snippet> |
| 29 | +</snippets> |
0 commit comments