Created
August 14, 2017 11:18
-
-
Save digamber89/6ac416696947aa3308dad22222853274 to your computer and use it in GitHub Desktop.
Allow Shop Manager to view the Preview Code
This file contains hidden or 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 | |
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