• Hi,

    I have instalkled Woo and WooVouchers, I created a role by cloning the Administrator role, however the options Woo > Voucher Codes and Woo > Check Voucher Code are not showing up for the cloned role…

    Anybody any idea why, or even better, how to fix it?

    Cheers.

Viewing 1 replies (of 1 total)
  • Thread Starter webwizardofoz

    (@webwizardofoz)

    SOLUTION:

    /** RC – added this so every person can manage voucher, not only the administrator */
    function woo_vou_vendor_can_redeem_all_codes_vouchermanager( $roles = array() ) {

    $roles[] = ‘Your_Added_Role_Voucher_Manager’;
    return $roles;
    }
    add_filter( ‘woo_vou_assigned_admin_roles’, ‘woo_vou_vendor_can_redeem_all_codes_vouchermanager’ );

Viewing 1 replies (of 1 total)
  • The topic ‘Woo Vouchers menu options not showing up’ is closed to new replies.