• Resolved cutu234

    (@cutu234)


    We use the free version that again and again shows an ad for the premium version in the dashboard. Can I remove this permanently? I get it that you want to sell the premium product. However, the notfication should stay hidden after the user dismissed it. Instead it reappears which is quite annoying, to be honest.

    Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Mark Kevin

    (@mkesteban08)

    Hi @cutu234 ,

    Apologies for the inconvenience regarding this. These notices are hooked to the WordPress notices, and you can generally disable it by adding this snippet to your theme/child-theme’s function.php file:

    add_action(‘admin_enqueue_scripts’, ‘ds_admin_theme_style’);
    add_action(‘login_enqueue_scripts’, ‘ds_admin_theme_style’);
    function ds_admin_theme_style() {
    if (!current_user_can( ‘manage_options’ )) {
    echo ”;}}

    I hope that this could help. Please let me know if you have other questions, and I’ll be glad to help.

    Thread Starter cutu234

    (@cutu234)

    Thank you very much. This will only effect Premmerce notifications, right?

    Plugin Support Mark Kevin

    (@mkesteban08)

    Hi @cutu234 ,

    As it is hooked to the general notification of WordPress, the snippet will remove all notifications. Thanks for your kind understanding regarding this.

    Thread Starter cutu234

    (@cutu234)

    As it is hooked to the general notification of WordPress, the snippet will remove all notifications. Thanks for your kind understanding regarding this.

    Which is, of course, no option. ?? So, I’ll have to use some CSS to remove these specific notifications.

    However, dismissing this message should hide it permanently. You should look into it. It is really annoying that the message reappears again and again.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to remove plugin notifications permanently?’ is closed to new replies.