Skip to content

Instantly share code, notes, and snippets.

@wpweb101
Created August 24, 2015 05:30
Show Gist options
  • Select an option

  • Save wpweb101/4f418f32c053d5ccedbe to your computer and use it in GitHub Desktop.

Select an option

Save wpweb101/4f418f32c053d5ccedbe to your computer and use it in GitHub Desktop.
Add any role as a voucher vendor role.
<?php
function woo_vou_add_role_as_voucher_vendor( $roles = array() ) {
$roles[] = 'wc_vendor';
return $roles;
}
add_filter( 'woo_vou_edit_vendor_role', 'woo_vou_add_role_as_voucher_vendor' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment