Skip to content

Instantly share code, notes, and snippets.

@kilbot
Created September 9, 2016 10:34
Show Gist options
  • Select an option

  • Save kilbot/6fa518797bd985e7eead651a7f7354ef to your computer and use it in GitHub Desktop.

Select an option

Save kilbot/6fa518797bd985e7eead651a7f7354ef to your computer and use it in GitHub Desktop.
Allow customer edit on WordPress multisite
<?php
// change the CASHIER_ID, and
// add to your functions.php file
add_filter('map_meta_cap', 'wc_pos_map_meta_cap', 10, 3);
function wc_pos_map_meta_cap($caps, $cap, $user_id){
if(is_pos() && $cap == 'edit_users' && $user_id === CASHIER_ID){
$caps = array('edit_users');
}
return $caps;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment