(function() {
var headlessUrl = "https://www.colefacialclinic.com/shop";
var currentPath = window.location.pathname;
// Redirect product pages
if (currentPath.indexOf('/products/') !== -1) {
window.location.href = headlessUrl + currentPath;
}
// Redirect collection pages
else if (currentPath.indexOf('/collections/') !== -1) {
window.location.href = headlessUrl + currentPath;
}
// Redirect the home page (optional)
else if (currentPath === '/' || currentPath === '/index') {
window.location.href = headlessUrl;
}
})();
/head>
Use left/right arrows to navigate the slideshow or swipe left/right if using a mobile device