• This plugin constantly is spamming the wordpress admin notices to upgrade, and theres a lot of negative reviews and other support requests about this. Dismissing the just cycles between the two ads constantly and with wordpress 7 these notices are breaking the layout (had to disable this plugin to edit my gravity forms).

    I looked through the code and there are transients to only show these ads every 7 days. This is not happening and currently dismissing them does not work. It shows the big ad, dismissing it switches to a small ad, after dismissing that, the big ad comes back within a few minutes. Not sure where or what is resetting the transients.

    To get around it, just plop this in your themes function.php to completely remove the ad notices once and for all:

    // Remove obnoxious admin notices for Multi Page Advance plugin
    add_action('admin_init', function () {
    remove_action('admin_notices', 'aagf_fn_admin_notice');
    }, 20);

You must be logged in to reply to this topic.