Last active
April 18, 2024 11:42
-
-
Save MKlblangenois/e83d70bdf01b7e70d29b343b6ebab4fc to your computer and use it in GitHub Desktop.
Allow shop_manager to edit Privacy policy page and WordPress / WooCommerce
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Allow the shop manager to edit the "privacy" page on WooCommerce | |
* | |
* @return void | |
*/ | |
function update_shop_manager_caps() { | |
if (get_role('shop_manager')) { | |
$shop_manager_role = get_role('shop_manager'); | |
$shop_manager_role->add_cap('manage_privacy_options', true); | |
$shop_manager_role->add_cap('manage_options'); // You need to enable this caps AFTER the previous one | |
} | |
} | |
add_action('admin_init', 'update_shop_manager_caps'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment