Hi all, my store is using Flora theme. I used to be able to change theme.liquid and immediately see changes in browser - but not anymore.
To debug this, I created a copy of the main theme and gutten theme.liquid to be:
<!doctype html>
<html class="js" lang="{{ request.locale.iso_code }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="theme-color" content="">
<link rel="canonical" href="{{ canonical_url }}">
<script>
// AAA
</script>
{{ content_for_header }}
</head>
<body>
{{ content_for_layout }}
</body>
</html>
Doing all of this in Shopify’s built-in VS code.
I then:
- Confirm that the theme is saved and published
curlthePreview URL:
❯ curl -vL 'https://STORE_URL/?_ab=0&_fd=0&_sc=1&preview_theme_id=180667482392' 2>&1 | grep AAA
And the changes are not there. If I inspect the returned content, I still see the original theme served, without my changes.
Am I doing something wrong or is it Shopify being buggy? I swear this used to work, even without copying the theme
