• Resolved akhilsudhakaran

    (@akhilsudhakaran)


    I have created one role for our store’s product manager. He has access to all orders. But he cannot print any of this plug-in’s option in the Action column. Could you help?

Viewing 1 replies (of 1 total)
  • Plugin Author WebToffee

    (@webtoffee)

    Hi @akhilsudhakaran,

    By default, print permission is for administrator and shop manager user only and customers from front end. You may please use the below filter to add print permissions for other user roles.

    add_filter('wf_pklist_alter_admin_print_role_access','wt_pklist_add_print_role');
    function wt_pklist_add_print_role($role_arr)
    {
    	//$role_arr[]='shop_manager'; //add custom roles here
    	return $role_arr;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Print Privilege for Product Manager’ is closed to new replies.