• Resolved morris4ever69

    (@morris4ever69)


    Hi,

    is there a way to let only admin to export orders?

    My goal is to hide the menu WooCommerce > Export Orders when a Shop Manager is logged in.

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author algol.plus

    (@algolplus)

    hi

    please, try this code.
    thanks, Alex

    add_filter("woe_current_user_can_export", function($can) {
     $user = wp_get_current_user();
     $allowed_roles  = array('administrator'); //add more here 
     return array_intersect( $allowed_roles, (array) $user->roles ) ;
    });
    
    Thread Starter morris4ever69

    (@morris4ever69)

    Perfect solution! Thank you very much for your help and for the plugin. I’m planning to buy the Pro version! ??

    Plugin Author algol.plus

    (@algolplus)

    you’re welcoome

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Let only admin to export orders’ is closed to new replies.