nboliver
nboliver
Thanks @curiouscrusher @t-kelly What's the word here? Noticed this issue starting this morning. Will there be a patch provided?
@1aurabrown Not sure if this helps, but our solution to the mini cart uses some helper functions to track the multiple carts: ``` /** * Build an array of cart...
@dungle-scrubs - This helped me, thanks.
I think you can try: ``` { matchPath: '/:lang?/:parent/:child', getLanguageFromPath: true, excludeLanguages: ['fr'], }, ``` However, switching languages directly on one of those paths seems to be broken, since it...
Thanks for sharing that example @Axeldeblen, it was helpful.
I found the workshop here: https://workshops.shopify.dev/workshops/webhooks-in-nodejs
@chr-ge Also experiencing this issue. We are using GrapQL as detailed [here](https://github.com/LiamMartens/sanity-plugin-intl-input/issues/34), so the field is `i18n_lang` instead of `__i18n_lang`, but the issue is the same. @LiamMartens No custom publish...
Yeah, using VS code with v1.0.6. I have `"@shopify/prettier-plugin-liquid": "^1.0.6"` in package.json and am requiring the plugin in prettier.config.js like this: ``` module.exports = { ... plugins: [ require('@shopify/prettier-plugin-liquid'), require('prettier-plugin-tailwindcss'),...