• Resolved Salpetriere

    (@salpetriere)


    I am unable to close the ‘WooCommerce database update done’ notice.

    When I hit the ‘Thanks’ button I’m simply taken to a blank page that states ‘Action failed. Please refresh the page and retry.’

    Every time I retry, as per the instructions in the error message, I receive the same result. Therefore the ‘WooCommerce database update done’ notice now exists permanently in my dashboard.

    I see another user having the same issue here – https://www.ads-software.com/support/topic/woocommerce-database-update-done/

    How should I fix this?

Viewing 2 replies - 16 through 17 (of 17 total)
  • Very strange – the suggestion to update the database field to “actioned” did not make the message go away.

    The plugin offered at Github, which was supposed to do the very same thing, DID make the message go away.

    Odd…but in my case, it’s fixed.

    Add this to functions.php to hide all popup Woocommerce notices. Adds css to dashboard.

    add_action('admin_head', 'admin_css');
    
    function admin_css() {
      echo '<style>
        .woocommerce-store-alerts {
    		display: none;
    	}
      </style>';
    }
Viewing 2 replies - 16 through 17 (of 17 total)
  • The topic ‘Unable to Close ‘WooCommerce database update done’ Notice’ is closed to new replies.