Shopify is notifying shop owners about the need to convert theme.scss files to theme.css files. They are saying that all free and paid Shopify themes in the future will have this conversion.
Ok, that’s good.
Looks like a .css file can be saved as a .scss file but not vice versa. But, how am I supposed to convert our theme.scss to .css - there aren’t any guides or anything provided. So, I just downloaded the most recent version of our theme, but that is still using the old theme.scss file that Shopify told me they do not want!
Can someone shed some light on this issue, pls. Thanks.
If there were clear instructions, we may complete the task, but I couldn’t find any guidance for the layperson who’d be happy to do some coding.
There is some info for developers. For example, looks like Mixins don’t work with .css but could not find detail about converting them to .css - the Shopify pages assume that everybody understands how it’s done!
It looks like Debut has been updated so far. And, Venture theme has not been updated yet, it seems.
So, why is Shopify sending messages to shop owners before converting all of their themes?
How do you know Brooklyn is next: were you informed by Shopify?
Perhaps Venture will be last on their to do list; 600 lines in the beginning of .scss appear to be code for Mixins. Think Debut’s coding was easier to adapt maybe?
How do they expect people to do the conversion for 600 lines of Venture’s theme.scss, if they do not explain the details?
Should be fine. Just duplicate your theme, copy your theme.scss.liquid file and paste it into the converter, copy what comes out the other end and paste it into your theme.scss.liquid file. Save it, check your website and make sure all looks well, then publish
Tried some online code checkers etc before and can not say they worked well. In this case, there is a very long list of Mixin variables, and am not predicting whether all will be converted correctly. But, thanks for the suggestion, and I’ll give it a go some time later today or tomorrow. Will let you know how it goes.
Please do. While my stores theme doesnt use too many mixins, we’ll be updating in the coming weeks too and this was my plan so I sure hope it goes alright lol.
Not good news! Finds multiple parsing errors. Starts with not liking Line 231:
fatal error: parse error: failed at $color-btn-primary: { { settings.color_button_bg } } ; (stdin) on line 231
I deleted the whole primary button section beginning with Line 231 and tried again. It didn’t like the following section on the secondary button either! And if I keep deleting sections, there will not be much of theme.scss left. What to do?
Wow, not working for me at all. I have an error, apparently in the first line, which I’ve never even touched (I have a super new store, barely started, so I have barely changed anything as of now, and definitely not on the first line).
Error I got:
fatal error: parse error: failed at { % comment % } (stdin) on line 1
+1 , please help.
I get this error while trying to migrate/convert the .scss file to .css
Compilation Error
Error: Invalid CSS after " $color-text:": expected 1 selector or at-rule, was “{{ settings.color_t”
on line 338 of sass/Users/********/Desktop/css/theme.scss
$color-text: {{ settings.color_text }};
is there an ‘easy’ way for shop owners to fix this?
So I searched this forum if anyone else has asked this or not. There is a thread where someone suggested getting the CSS from the browser (Inspect Element), copying it into a code editor, saving it as CSS, uploading it to assets, and then pointing to it in theme.liquid.
I’m not sure what’s going to happen when the themes will be updated, I guess, CSS? So far, for me, it worked.
My store’s speed score is the same, but my interface is super fast now. It was sometimes unbearably slow, so, I’ll take this improvement.
@FG10 i’ve just converted the string ’ {{ ‘theme.scss.css’ | asset_url | stylesheet_tag }} ’ into ’ {{ ‘theme.css’ | asset_url | stylesheet_tag }} ’ so it will point on the new file.
Do you think it works anyway? It seems to work…
and please note that this string must be edited in many liquid files, like password.liquid and so on, because many things use to work with the old theme.scss…
I’m just searching for ‘scss’ in any files and editing them