Skip to content

Instantly share code, notes, and snippets.

View hieutran's full-sized avatar
💭
I may be slow to respond.

hieutran hieutran

💭
I may be slow to respond.
View GitHub Profile
/*
* Ensure the http protocol is always used on the myshopify.com domains.
* Uses liquid to input the correct URL.
*/
if (window.location.href.match(/https:\/\/.*.myshopify.com/) && top === self) {
window.location.href = window.location.href.replace(/https:\/\/.*.myshopify.com/, 'http://{{ shop.domain }}');
}