-
Notifications
You must be signed in to change notification settings - Fork 9.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't Disable Advanced Reporting #12866
Comments
Hi @nfourteen, could you create PR? Thanks! |
Hi @PieterCappelle, I just submitted the pull request. |
@nfourteen, thank you for your report. |
Select Disable and also select Industry data and click on save it should save . I think vertical message relate to the industry data |
And even when you disable it the message shows in the dashboard, this is in really bad taste Magento, promoting 3rd party services on the homepage of the admin interface without being able to disable it! All you need to do is add |
Agree with the sentiment here. New features like this should be by default disabled. |
Nobody is scared that this is a sign that the developers are in need (the waving flag on the sinking ship)? ;) But fully agree. Especially together with #12828 where this actually drives away users customers. Anyways, thanks for the PR @nfourteen |
New features disabled by default. That's a joke right? This is another attempt to reach an audience. They've been doing it for years and I'm tired of it. |
I think there should be option to totally disable such external services, dotMailer is the other one |
Totally nonsense! Some sort of dictation? 2.2.2 having this client does not like. |
2.2.6 - still an issue |
Any solution for this issue? I had just disable the Magento_Analytics by the below command, php bin/magento module:disable Magento_Analytics and php bin/magento setup:di:compile now no more error notifications from Business Intelligence. |
Is this module taking data from stores regardless if you have a paid BI account at all ? |
I'd also really like to know if data from my stores is being sent to BI without an account. There's all kinds of privacy implications if data is being sent to Magento 1) without any kind of notification to admin users and 2) without the ability to disable it without error. If data is being shipped, I'd like to know what is being shipped b/c again, privacy issues. |
Magento 2.2.6 Attempting to disable Advanced Reporting... Save Config "Advanced Reporting Service" to "Disable" Returns "You saved the configuration." but select option "Advanced Reporting Service" remains "Enable" Reviewing configuration in mysql "core_config_data" the item path "analytics/subscription/enabled" shows value "0" after configuration saved with "Advanced Reporting Service" set to "Disable". The display of "Advanced Reporting Service" is not correctly reflecting the "Disable" status. |
Duplicate of #15259 |
I just hid it in the css. In my case it was the file /pub/static/adminhtml/Magento/backend/en_US/css/styles.css from .dashboard-advanced-reports { to .dashboard-advanced-reports { |
jzahedieh edit: vendor/magento/module-analytics/view/adminhtml/layout/adminhtml_dashboard_index.xml
|
Preconditions
Steps to reproduce
Stores > Configuration > General > Advanced Reporting
and change Advanced Reporting Service to DisableExpected result
Actual result
Please select a vertical.
Reason and Proposed Solutions
The error is thrown from
Magento\Analytics\Model\Config\Backend\Vertical::beforeSave()
method because I did not select an Industry under Industry Data. That defaults to--Please Select--
and is an empty value, sobeforeSave()
behaves as it should.Since the Advanced Reporting needs an external account and service, it should default to Disable on new installs. However, if it was Magento's intention to have it enabled for all new installs, then 1) the logic should be changed so an empty value for the Industry can be provided when Advanced Reporting Service is set to Disable and Save Config is pressed or 2) a more detailed error message should be displayed so merchants understand that an Industry must be provided, even to Disable the Advanced Reporting Service.
The text was updated successfully, but these errors were encountered: