Skip to content

Instantly share code, notes, and snippets.

@digamber89
Created August 14, 2017 11:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save digamber89/6ac416696947aa3308dad22222853274 to your computer and use it in GitHub Desktop.
Save digamber89/6ac416696947aa3308dad22222853274 to your computer and use it in GitHub Desktop.
Allow Shop Manager to view the Preview Code
<?php
add_filter('woo_preview_emails_min_capability', 'wpe5321_set_min_capacity');
function wpe5321_set_min_capacity($capability){
$capability = 'manage_woocommerce';
return $capability;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment