Aug 27, 2021
I am trying create products from csv item lists. This is an example I am trying to do. import shopifyimport pandas as pdproduct = shopify.Product()df = pd.read_csv('example.csv')for idx in df...
I have been writing codes with Python. I tried to run the codes but it did not work and the error reads module 'shopify' has no attribute 'ShopifyResource' 'It worked well until I reboot Jup...
No content to show
User Activity
Shopifyで商品をアップしてTwitterやFacebookにシェアしようとした時、複数枚商品画像を登録していると1枚目ではなくなぜか3枚目の商品画像がサムネとして表示されていました。これの解決方法として備忘録として載せておきます。もし同じエラーで困っている方がいたら参考にしてみてください。※ liquidコードを編集します。ですが数字をいじるだけなので安心してくださいマイページの「オンラインストア」→「テーマ」→「カスタマイズ」に飛んでくださいページ左上の「•••」をクリック「コードを編集...
I want to try to share my products on Twitter and Facebook.But unfortunately, the product thumbnails were not what I want to show.They show second image I uploaded.How can I replace the thumbnails into the first image instead of second one?Do I have ...
Thank you for your helpI didn't even understand what location was.I could manage inventory.I appreciate it again!
08-25-2021
I would like to change inventory quantity of products, but I don't even know how to do that.Here is a part of example to list a product I try to do.product = shopify.Product()
product.title = "example"
product.save()
Thank you soo much!!It worked well!I appreciate it!
I tried to upload images as URL on new products with REST API, but the error reads "404 Not Found".Although I can upload images on products existing images, I cannot do first image on them.I am using Python and REST API, and writing code like the bel...