owebia
owebia
A dependency to `Magento_Customer` should be added in https://github.com/mageplaza/magento-2-smtp/blob/2.4/etc/module.xml
I made some tests and it seems that adding a sequence in etc/module.xml is not enough. The installation process fails when trying to instantiate `Setup\UpgradeSchema.php`. One solution is to always...
ExcelNamedRangeCollection.Insert causes error "We found a problem with some content in 'test.xlsx'."
Thank you for the fix!
@thomas-kl1 anything new on this? I'm using recaptcha and Google Analytics (Google Tag Manager). I also use tarteaucitron.js. Google Analytics can easily be configured with tarteaucitron.js (instead of using the...
For recaptcha, maybe `vendor/magento/module-re-captcha-frontend-ui/view/frontend/web/js/reCaptchaScriptLoader.js` could be overridden. ```js /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([], function () { 'use strict';...
I created a proof of concept on delaying the loading of recaptcha to the cookie consent. Opengento/Gdpr/view/frontend/requirejs-config.js ```js var config = { config: { mixins: { 'Magento_ReCaptchaFrontendUi/js/reCaptchaScriptLoader': { 'Opengento_Gdpr/js/reCaptchaScriptLoader-mixin': true...
I looked at how Google Analytics could be delayed and it seems that Magento already implemented something with their cookie notice. https://github.com/magento/magento2/blob/33242e4b19cf207d7b73f7791ef894b48bb41f8a/app/code/Magento/GoogleAnalytics/view/frontend/web/js/google-analytics.js#L21-L33 ```js if (config.isCookieRestrictionModeEnabled) { allowedCookies = $.mage.cookies.get(config.cookieName); if...
I created a proof of concept on delaying the loading of google analytics to the cookie consent. Opengento/Gdpr/view/frontend/requirejs-config.js ```js var config = { config: { mixins: { 'Magento_ReCaptchaFrontendUi/js/reCaptchaScriptLoader': { 'Opengento_Gdpr/js/reCaptchaScriptLoader-mixin':...
I agree it would be cleaner to override the default cookie restriction feature available in Magento (same cookie name, use triggered event, etc.). But some challenges remain: tarteaucitron allows the...
An important question to answer: is consent required for using reCAPTCHA and Google Analytics? For France, the response is: - __reCAPTCHA :__ yes https://www.cnil.fr/fr/application-stopcovid-la-cnil-tire-les-consequences-de-ses-controles https://www.legifrance.gouv.fr/cnil/id/CNILTEXT000042125452 _« veiller, le cas échéant,...