Skip to content

Instantly share code, notes, and snippets.

@MKlblangenois
Last active April 18, 2024 11:42
Show Gist options
  • Save MKlblangenois/e83d70bdf01b7e70d29b343b6ebab4fc to your computer and use it in GitHub Desktop.
Save MKlblangenois/e83d70bdf01b7e70d29b343b6ebab4fc to your computer and use it in GitHub Desktop.
Allow shop_manager to edit Privacy policy page and WordPress / WooCommerce
<?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