• Resolved pupilla

    (@pupilla)


    Hey,

    could you please remove the “This website has the Advanced Custom Fields plugin that is supported by the Glossary plugin.” notice in admin or add the option to successfully dismiss it? No matter how often I click on the “x” it returns with every reload. It makes the content skip while loading, so I click on the wrong item sometimes and grabs my attention, sets into alert mode for a second.

    Thank you so much!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Quick solution:

    add this code in your theme/child theme functions.php

    /**
     * Fix the notice dismiss issue in the glossary plugin
     */
    function glossary_fix_the_notice_dismiss_issue() {
    	if ( function_exists( 'wpdesk_init_wp_notice_ajax_handler' ) ) {
    		wpdesk_init_wp_notice_ajax_handler();
    	}
    }
    add_action( 'init', 'glossary_fix_the_notice_dismiss_issue', 99 );

    Question for plugin support why the wpdesk_init_wp_notice_ajax_handler() is only called for multisite? is there any specific reason?

    Thanks for reporting the issue, I was planning to do a new release today so I will add also a bugfix for that issue.

    @mte90 Thanks for the update.

    @pupilla please remove my given code from funcitons.php before updating the plugin next release if you have added it. Otherwise, it might create an error.

    • This reply was modified 2 years, 5 months ago by Vijay Hardaha.
    Thread Starter pupilla

    (@pupilla)

    Thanks, both of you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘ACF notice won’t disappear’ is closed to new replies.