Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #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.

    #957551

    There is still no solution to add a consent-checkbox to Mailchimp Integration Forms, while Mailchimp offers options meanwhile.

    +1

    #957567

    Ok 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-font

    i 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&#8217;) === 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.
    #959209

    Hi,

    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,
    Basilis

    #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.

    #960779

    Hey John!

    The option is located in privacy & cookies in your enfold admin panel

    Regards,
    Kriesi

    #960781

    PS @roeschke:
    This is a maps default behaviour that we will not touch. You can now set your maps to lazy load, so they only get loaded when the user interacts with the map preview image.

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘DSGVO / GDPR’ is closed to new replies.