• Resolved Remco

    (@rembem)


    I have an irritating message on top of all my settings pages that does not go away:

    ” We don’t mean to bug you, but you’ve been using Admin Columns for some time now, and we were wondering if you’re happy with the plugin. If so, could you please leave a review at ww.wp.xz.cn? If you’re not happy with Admin Columns, please click here. “

    The button under it “Permanently Hide Notice” does not work.
    There is a javascript error in the console, on the settings pages where this message is:

    ReferenceError: wpmUi is not defined
    var modal = wpmUi._make_modal( ‘light’ );

    The message is only there for a new administrator user I added.

    https://ww.wp.xz.cn/plugins/codepress-admin-columns/

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

    (@dungengronovius)

    I cannot reproduce this issue. I tried to create a new admin user and force to get this message. The button ‘Permanently hide notice’ button works fine.

    Maybe some javascript from another plugin is in the way. Can you please find out which file gives the JS error in your browser console? I think the error is not done by our plugin. Otherwise you could try to disable some other plugin and find our which plugin is causing this problem.

    As a workaround you could put this code to your function.php to disable the review message.

    function cpac_disable_review_notice() {
    update_user_meta( get_current_user_id(), ‘cpac-hide-review-notice’ , ‘1’, true );
    }
    add_action(‘admin_init’, ‘cpac_disable_review_notice’);

    Thread Starter Remco

    (@rembem)

    I did some tests and found that the Custom Sidebars plugin is causing this. The js error itself in the console is generated in options-general.php, but when I deactivate this plugin, I can click away the notice. I will notify the developers of Custom Sidebars.

    Thanks for the quick reply, and the functions.php fix.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Message not going away’ is closed to new replies.