PIPEDA Compliance

The app used for assuring the GDPR/CCPA/APPI/PIPEDA compliance of this site, collects your IP and the email address in order to process the data. For more check Privacy Policy & Terms of Service

Data Rectification

You can use the link below to update your account data if it is not accurate.

Data Portability

You can use the links below to download all the data we store and use for a better experience in our store.

Access to Personal Data

You can use the link below to request a report which will contain all personal information that we store for you.

document.addEventListener("DOMContentLoaded", function() { // Check browser's preferred language (get the first two characters to ignore region) const language = navigator.language.substring(0,2); // Your mapping of languages to quiz IDs const quizMapping = { 'nl': 'koHP72p' 'de': 'LwHy07r' }; // Default language (fallback to English if not found) const defaultQuizId = quizMapping[language] || quizMapping['en']; // Find all quiz links and update the href const quizLinks = document.querySelectorAll('a[href^="#quiz-"]'); quizLinks.forEach(link => { link.setAttribute('href', '#quiz-' + defaultQuizId); }); // Find all iframes with quiz URLs and update the src attribute and the data-url attribute of the parent div const quizIframes = document.querySelectorAll('iframe[src^="https://admin.revenuehunt.com/public/quiz/"]'); quizIframes.forEach(iframe => { const newSrc = iframe.src.replace(/quiz\/\w+/, 'quiz/' + defaultQuizId); iframe.src = newSrc; // If the parent div has the data-url attribute, update it as well const parentDiv = iframe.parentElement; if (parentDiv && parentDiv.hasAttribute('data-url')) { const newDataUrl = parentDiv.getAttribute('data-url').replace(/quiz\/\w+/, 'quiz/' + defaultQuizId); parentDiv.setAttribute('data-url', newDataUrl); } }); });