Tagged: DSGVO
-
AuthorPosts
-
May 16, 2018 at 3:17 pm #957528
Hello is it possible to collect all the available tipps and hints for DSGVO/GDPR on one page?
So far there are possibilities for:
Google-Analytics
Google-Maps
Google-Fonts
Comment-Forms
Youtube-Videos
etc.There is still no solution to add a consent-checkbox to Mailchimp Integration Forms, while Mailchimp offers options meanwhile.
No consent-checkbox for comments.May 16, 2018 at 3:48 pm #957551There is still no solution to add a consent-checkbox to Mailchimp Integration Forms, while Mailchimp offers options meanwhile.
+1
May 16, 2018 at 4:11 pm #957567Ok now there is another Problem:
Google Maps loads the Roboto Fonts as standard, even you have it embedded locally already!
maybe we can include some function to disable this behaviour.Fast solution:
https://stackoverflow.com/questions/25523806/google-maps-v3-prevent-api-from-loading-roboto-fonti have testet it by applying the new script from 2017 to the google-code box in settings. it works!
<— snip code –>
// Preventing the Google Maps libary from downloading an extra font
(function() {
var isRobotoStyle = function (element) {// roboto font download
if (element.href
&& element.href.indexOf(‘https://fonts.googleapis.com/css?family=Roboto’) === 0) {
return true;
}
// roboto style elements
if (element.tagName.toLowerCase() === ‘style’
&& element.styleSheet
&& element.styleSheet.cssText
&& element.styleSheet.cssText.replace(‘\r\n’, ”).indexOf(‘.gm-style’) === 0) {
element.styleSheet.cssText = ”;
return true;
}
// roboto style elements for other browsers
if (element.tagName.toLowerCase() === ‘style’
&& element.innerHTML
&& element.innerHTML.replace(‘\r\n’, ”).indexOf(‘.gm-style’) === 0) {
element.innerHTML = ”;
return true;
}
// when google tries to add empty style
if (element.tagName.toLowerCase() === ‘style’
&& !element.styleSheet && !element.innerHTML) {
return true;
}return false;
}// we override these methods only for one particular head element
// default methods for other elements are not affected
var head = $(‘head’)[0];var insertBefore = head.insertBefore;
head.insertBefore = function (newElement, referenceElement) {
if (!isRobotoStyle(newElement)) {
insertBefore.call(head, newElement, referenceElement);
}
};var appendChild = head.appendChild;
head.appendChild = function (textNode) {
if (!isRobotoStyle($(textNode)[0])) {
appendChild.call(head, textNode);
}
};
})();
<— snip code –>- This reply was modified 6 years, 6 months ago by roeschke.
May 19, 2018 at 10:23 pm #959209Hi,
We are having an update at 22, where we will be covering all of those things.
We appreciate your patience in the mean time.Best regards,
BasilisMay 23, 2018 at 11:07 am #960735“There is still no solution to add a consent-checkbox to Mailchimp Integration Forms, while Mailchimp offers options meanwhile.”
Hi. Just updated to 4.4. Can’t see an option in Enfold > Newsletter > ‘Newsletter via Mailchimp’ to add a consent checkbox… though all-systems-go on the MailChimp account itself (‘Enable GDPR fields’ is enabled). Am I missing something?
Thanks.
May 23, 2018 at 1:39 pm #960779Hey John!
The option is located in privacy & cookies in your enfold admin panel
Regards,
KriesiMay 23, 2018 at 1:42 pm #960781 -
AuthorPosts
- The topic ‘DSGVO / GDPR’ is closed to new replies.