You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a storefront has been profiled, links offered in the 'code snippet' section are missing the extension of the file, and so this resolves to a 404 in the code editor.
only appends the liquid file extension for the first child section of a template in the flame chart - everything below that level has the extension stripped.
The text was updated successfully, but these errors were encountered:
👋 the fix for this issue will be in version 2.0.6 of the extension, we just submitted it for review so give it at least a week for it to appear (could take up to a few weeks). thanks for reporting!
Problem
When a storefront has been profiled, links offered in the 'code snippet' section are missing the extension of the file, and so this resolves to a 404 in the code editor.
For example, on one store I get the url to a snippet to be:
https://mystoredomain.com/admin/themes/135002751133?key=sections/main-product&line=542
Which results in the code editor message that: "sections/main-product does not exist"; the url should be:
https://mystoredomain.com/admin/themes/135002751133?key=sections/main-product.liquid&line=542
Which does resolve to the line for quick inspection.
Update
Looks like
shopify-theme-inspector/src/utils/getProfileData.ts
Line 54 in 542ab96
The text was updated successfully, but these errors were encountered: