Shopify: Error coming from `bundle install`
I am getting error. I am trying the Shopify Remix app. The error occurs when I add the extension in my app and run Shopify app dev. Any idea how to resolve this? Here is error in the text Shutting…
I am getting error. I am trying the Shopify Remix app. The error occurs when I add the extension in my app and run Shopify app dev. Any idea how to resolve this? Here is error in the text Shutting…
I've been trying to create product with variants using Python and GQL, but lacking something and dosen't work as I want. it says "Field 'optionValues' doesn't exist on type 'ProductOption'" but I reffer to a official document and copy it…
Using the Python ShopifyAPI library, version 12.3.0 I want to delete a specific product option. def remove_product_option(self, product_id): product = self.get_product_by_id(product_id) option_name = self.config['option_to_delete'] for i, option in enumerate(product.options): if option.name == option_name: product.options.pop(i) product.save() This code is not working.…
I have a client who wants to sell memberships on a website that is not a shopify store. They insist on using Shopify to handle the paid membership because they have separate shopify store. I am struggling to determine if…
So I have a page in my Shopify Remix React app using code like the below. My question is how do I add the request headers that Shopify is expecting to authenticate the admin request? fetch('/api/geocode', { method: 'POST', headers:…
I'm learning how to create apps on Shopify and need some help. Whenever I run, npm run dev and click any key, it shows this even though I'm already logged in to Shopify. npm run dev > dev > shopify…
I need to add the customizations made through checkout ui extensions as a metafield/attribute on the order, so it is populated under additional details. This is my current customization. Is it possible to make it a metafield/attribute on the checkout…
I can't seem to find any developer documentation on Shopify Metaobject limits. Can we have an unlimited number of types/definitions and an unlimited number of ojects within each type? I'm sure we can't, so wondering if anyone knows what the…
When 'npm run dev' I get this. ? Command `hydrogen dev` not found. Did you mean `kitchen-sink prompts`? > (y) Yes, confirm (n) No, cancel Press ↑↓ arrows to select, enter or a shortcut to confirm. enter image description here…
On the collection page, the size options in the filter are displayed chaotically, roughly like this: M-Size XS-Size L-Size S-Size And I need to organize it like: XS-Size S-Size M-Size L-Size And I have an idea. I create an array…