The notification was added following a significant number of support requests from customers who unintentionally disabled customer registration and later could not understand why signup was no longer working.
Since the module is primarily designed for SaaS usage, customer registration is generally expected to remain enabled, which is why the warning is shown by default whenever registration is disabled.
At the moment, there is no built-in option to disable this notification. However, you can easily hide it using a custom CSS override.
Kindly add the following CSS to your Admin Custom CSS area:
.data-allow-registration-warning{
display:none !important;
}
You can add this here:
Admin Area → Theme Style → Custom CSS
or directly via:admin/theme_style?tab=tab_custom_css
This will hide the notification while keeping customer registration disabled as intended.