• Resolved iwanwilaga

    (@iwanwilaga)


    Dear Dev / Support,

    Thank you for the great plugin. We are using the free version, it’s very dope! Tho, i’m very interested, whether it’s possible, to remove the Admin Notice please? At the Media screen the
    “We don’t mean to bug you, but you’ve been using Admin Columns for some time now,…”
    Admin notice box is there and i can’t remove it with wp native functions for Admin notice removals.

    (such as:
    if (is_admin() && !current_user_can(‘administrator’))
    remove_all_actions(‘admin_notices’);
    )

    Your Admin notice box has ‘immunity’ to that. Can you please help, how to solve this?

    Best wishes, Have a great 2021!
    Wiktor

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Stefan van den Dungen Gronovius

    (@dungengronovius)

    Thanks for your message.
    It seems that we indeed have no hook to remove that one.
    You can click to dismiss the message and it will not be displayed again, but I understand that you might want to remove it on forehand.
    In that case, you can remove it will CSS like this:

    add_action( 'in_admin_header', function(){
    	?><style>.ac-notice.review {display: none!important}</style><?php
    });
    Thread Starter iwanwilaga

    (@iwanwilaga)

    Thanks, my man.
    Best would be to implement the removal hook, but maybe that will happen in the future. Till then css will make it.
    Best wishes, have an aWesome 2021!
    Wiktor

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Admin notification panel hide, possible?’ is closed to new replies.