Plugin Contributor
shasvat
(@shasvat)
Hi @liaodin
We are not able to replicate the issue on our site so can you share us the screenshots for more details so that it will be helpful for us to work on your issue.
Thanks,
Shasvat Shah
Hi,thanks for your reply
I think I found the cause of this situation.
Because I used some code about hiding the admin notices.
If i hide all notifications, the batch printing window will not pop up.
Maybe you will know why hiding notifications can cause this situation.
code show as below
function hide_update_noticee_to_all_but_admin_users()
{
if (is_super_admin()) {
remove_all_actions( ‘admin_notices’ );
}
}
add_action( ‘admin_head’, ‘hide_update_noticee_to_all_but_admin_users’, 1 );
Plugin Contributor
shasvat
(@shasvat)
Hi @liaodin
Glad you find the cause and it working fine.
Regards,
Shasvat Shah