${STYLES}
MESSAGE
${PRIVACY_POLICY}
`;
if (
window.location.search === "?isPreview=true" ||
(localStorage.getItem("pp-cookie-bar-accepted-url") !== window.Shopify.shop &&
settings.show_banner)
) {
if (!settings.privacy_policy_url)
cookieHtml = cookieHtml.replace(PRIVACY_POLICY, '')
Object.keys(settingsDictionary).forEach(setting => {
const stringToReplace = new RegExp(setting, 'g')
cookieHtml = cookieHtml.replace(
stringToReplace,
settings[settingsDictionary[setting]]
);
});
document.body.appendChild(htmlToElements(cookieHtml)[0]);
// Do this if window has not yet loaded
window.onload = () =>
document.body.appendChild(htmlToElements(cookieHtml)[0]);
}
}
}
new GTPP().init();