Add support to remove the connect to store nag as it’s not wanted or needed
-
How can I remove the annoying nag?
Connect your store to WooCommerce.com to receive extensions updates and support.
For a PROD site, I do not care to connect to the store nor do I want automated updates as this is dangerous.
Yet I am forced to see this nag.
I know I can do:
add_filter( 'woocommerce_helper_suppress_admin_notices', '__return_true' );
But that is a hack at best since it will suppress all admin notices for WooCommerce.
Seriously, why would you force this nag over something so minor? All nags should have a way to suppress them as a common practice of good principles, the fact this nag is implemented this way is very distasteful and honestly, it cheapens the product.
Also, this could be considered a violation of WordPress Developer Guidelines:
Upgrade prompts, notices, alerts, and the like must be limited in scope and used sparingly, be that contextually or only on the plugin’s setting page. Site wide notices or embedded dashboard widgets must be dismissible or self-dismiss when resolved. Error messages and alerts must include information on how to resolve the situation, and remove themselves when completed.
You could argue
or self-dismiss when resolved
but given the nature of how to resolve this, dismissible would be the better solution. Do not force users to connect to your site for analytics, there is no gain for me to connect to your store but there are numerous downsides.Please implement a way to remove this nag. Given that I am a paying user of WooCommerce, I expect this to be dismissable.
- The topic ‘Add support to remove the connect to store nag as it’s not wanted or needed’ is closed to new replies.